~pythonregexp2.7/python/issue2636-12

« back to all changes in this revision

Viewing changes to Lib/sgmllib.py

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-06-09 14:52:42 UTC
  • mfrom: (39033.1.3 Regexp-2.6)
  • Revision ID: darklord@timehorse.com-20080609145242-9m268zc6u87rp1vp
Merged in changes from the core Regexp branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
# not supported at all.
10
10
 
11
11
 
 
12
from warnings import warnpy3k
 
13
warnpy3k("the sgmllib module has been removed in Python 3.0",
 
14
         stacklevel=2)
 
15
del warnpy3k
 
16
 
12
17
import markupbase
13
18
import re
14
19