History log of /external/python/cpython2/Lib/markupbase.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
6b7003a18c2fa7378eb5ec5766ded01dee212c85 19-Dec-2011 Ezio Melotti <ezio.melotti@gmail.com> #13576: add tests about the handling of (possibly broken) condcoms.
/external/python/cpython2/Lib/markupbase.py
215f13dd118f67fb8c3d3663dbbe11ed33691c4f 06-Jun-2006 Martin Blais <blais@furius.ca> Normalized a few cases of whitespace in function declarations.

Found them using::

find . -name '*.py' | while read i ; do grep 'def[^(]*( ' $i /dev/null ; done
find . -name '*.py' | while read i ; do grep ' ):' $i /dev/null ; done

(I was doing this all over my own code anyway, because I'd been using spaces in
all defs, so I thought I'd make a run on the Python code as well. If you need
to do such fixes in your own code, you can use xx-rename or parenregu.el within
emacs.)
/external/python/cpython2/Lib/markupbase.py
d09def36d52af3e087433eb67c49da633436c602 09-Mar-2006 Georg Brandl <georg@python.org> Bug #1442874: handle "<!>", the empty SGML comment
/external/python/cpython2/Lib/markupbase.py
7ed44e52aa8a238bfbcb39d89df477e9bafc1837 23-Aug-2005 Fred Drake <fdrake@acm.org> add note about "markupbase" not being intended for direct use
(closes SF bug #736659, patch #901369)
/external/python/cpython2/Lib/markupbase.py
f027ca816741fcea6267c6e8ea33ae43edfb7447 10-Jul-2004 Andrew M. Kuchling <amk@amk.ca> [Patch #965175] Incorporate a suggestion for a better error message
/external/python/cpython2/Lib/markupbase.py
70a6b49821a3226f55e9716f32d802d06640cb89 12-Feb-2004 Walter Dörwald <walter@livinglogic.de> Replace backticks with repr() or "%r"

From SF patch #852334.
/external/python/cpython2/Lib/markupbase.py
0eadaac7dc3ae49974c105ff9e8c1e98a04d7d5a 24-Apr-2003 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/markupbase.py
3163a3b4b2a820ef38e6c7282033fe2db9d43ebe 30-Mar-2003 Martin v. Löwis <martin@v.loewis.de> Patch #545300: Support marked sections.
/external/python/cpython2/Lib/markupbase.py
65230a2de758fbde57b3893c402436ae0202ada3 03-Jun-2002 Walter Dörwald <walter@livinglogic.de> Remove uses of the string and types modules:

x in string.whitespace => x.isspace()
type(x) in types.StringTypes => isinstance(x, basestring)
isinstance(x, types.StringTypes) => isinstance(x, basestring)
type(x) is types.StringType => isinstance(x, str)
type(x) == types.StringType => isinstance(x, str)
string.split(x, ...) => x.split(...)
string.join(x, y) => y.join(x)
string.zfill(x, ...) => x.zfill(...)
string.count(x, ...) => x.count(...)
hasattr(types, "UnicodeType") => try: unicode except NameError:
type(x) != types.TupleTuple => not isinstance(x, tuple)
isinstance(x, types.TupleType) => isinstance(x, tuple)
type(x) is types.IntType => isinstance(x, int)

Do not mention the string module in the rlcompleter docstring.

This partially applies SF patch http://www.python.org/sf/562373
(with basestring instead of string). (It excludes the changes to
unittest.py and does not change the os.stat stuff.)
/external/python/cpython2/Lib/markupbase.py
7ce734cd72bc32b5062f90f37fbe0cbc3c0e104e 31-May-2002 Neal Norwitz <nnorwitz@gmail.com> Use string methods where possible, and remove import string
/external/python/cpython2/Lib/markupbase.py
5445f078df1dc986259f75f6345afea19b27cb59 26-Oct-2001 Fred Drake <fdrake@acm.org> Re-arrange things and remove some unused variables/imports to keep pychecker
happy. (This does not cover everything it complained about, though.)
/external/python/cpython2/Lib/markupbase.py
3d32be192cb6104058d9d45acb93ba58c6c6cddc 13-Oct-2001 Fred Drake <fdrake@acm.org> Remove extra param from call to self.error().
Reported by Neal Norwitz.
/external/python/cpython2/Lib/markupbase.py
1cffd5ccff4f4fed205d9257f279f954ee127685 24-Sep-2001 Fred Drake <fdrake@acm.org> Be consistent about the string module.
/external/python/cpython2/Lib/markupbase.py
68f8a8061d4f217ec97d8dc19925ba3b57621be1 24-Sep-2001 Fred Drake <fdrake@acm.org> New base class for the SGMLParser and HTMLParser classes from the sgmllib
and HTMLParser modules (and indirectly for the htmllib.HTMLParser class).

This has all the support for scanning over DOCTYPE declarations; it warrants
having a base class since this is a fair amount of tedious code (since it's
fairly strict), and should be in a separate module to avoid compiling many
REs that are not used (which would happen if this were placed in either then
sgmllib or HTMLParser module).
/external/python/cpython2/Lib/markupbase.py