index
:
delta/cpython.git
2.0
2.1
2.2
2.3
2.4
2.5
2.6
2.7
3.0
3.1
3.2
3.3
3.4
3.5
3.6
baserock/2.7.9-mips64
baserock/markdoffman/py2-symlink
baserock/markdoffman/py2-symlink-v2
baserock/morph-2.7
legacy-trunk
master
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Lib
/
xml
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Add standard DOM exception hierarchy.
Martin v. Löwis
2000-12-13
1
-0
/
+68
*
Update the docstring.
Fred Drake
2000-12-11
1
-2
/
+31
*
Reduce the visibility of imported modules for cleaner "from ... import *"
Fred Drake
2000-11-21
1
-76
/
+181
*
Fix bug in prepare_input_source (patched by Paul P., sourceforge.net down
Lars Gustäbel
2000-10-24
1
-1
/
+1
*
Make reindent.py happy (lots of trailing whitespace removed).
Fred Drake
2000-10-23
9
-104
/
+103
*
Fixed a bug that caused namespace names to be reported as lists rather
Lars Gustäbel
2000-10-19
1
-0
/
+2
*
Fixed minor problem with reset().
Lars Gustäbel
2000-10-14
1
-1
/
+2
*
Moved appendChild calls back to DOMEventStream.
Lars Gustäbel
2000-10-13
1
-7
/
+27
*
Clear siblings, now that they are being set.
Paul Prescod
2000-10-13
1
-0
/
+2
*
Added parent attribute with getters and setters on XMLFilterBase.
Lars Gustäbel
2000-10-11
1
-0
/
+12
*
Added non-ns start and end element methods.
Lars Gustäbel
2000-10-11
1
-16
/
+31
*
Paul Prescod <paul@prescod.net>:
Fred Drake
2000-10-09
1
-0
/
+7
*
_exceptions: Format a missing system id as <unknown>.
Martin v. Löwis
2000-10-09
2
-5
/
+7
*
Don't use string methods to allow sharing this code with PyXML.
Martin v. Löwis
2000-10-07
1
-1
/
+2
*
Record bugs found when comparing the module with DOM Core Level 2.
Martin v. Löwis
2000-10-07
1
-1
/
+4
*
minidom: access attribute value before printing it
Martin v. Löwis
2000-10-06
2
-12
/
+14
*
In an incremental parser, close the parser after feeding everything.
Martin v. Löwis
2000-10-06
1
-0
/
+1
*
Don't use a file object as system id; try to propagate the file name to
Martin v. Löwis
2000-10-06
1
-1
/
+3
*
Don't report a final chunk for an external entity parser.
Martin v. Löwis
2000-10-06
1
-1
/
+0
*
Move translation from expat.error to SAXParseException into feed, so that
Martin v. Löwis
2000-10-06
1
-17
/
+19
*
Add SAXReaderNotAvailable, and use it to distinguish between an
Martin v. Löwis
2000-10-06
3
-3
/
+25
*
Support non-namespace elements in *ElementNS of XMLGenerator.
Martin v. Löwis
2000-10-03
1
-2
/
+10
*
Use string functions instead of methods to allow sharing this module with PyXML
Martin v. Löwis
2000-09-29
1
-3
/
+5
*
Remove dependency from saxutils when loading xmlreader
Martin v. Löwis
2000-09-29
1
-2
/
+1
*
Fix handling of file inputs on Windows; passing them to urllib.urlopen()
Fred Drake
2000-09-26
1
-3
/
+5
*
Include the version-detecting code to allow PyXML to override the "standard"
Fred Drake
2000-09-25
1
-2
/
+19
*
Fix inconsistent use of space/tabs.
Thomas Wouters
2000-09-25
1
-4
/
+4
*
Use SAX2 namespace support.
Martin v. Löwis
2000-09-24
1
-28
/
+39
*
[Patch 101634]
Martin v. Löwis
2000-09-24
2
-26
/
+11
*
Find feature names in handler.
Martin v. Löwis
2000-09-24
1
-3
/
+3
*
Fixed another bug.
Lars Gustäbel
2000-09-24
1
-1
/
+0
*
Improvements to doco strings.
Lars Gustäbel
2000-09-24
4
-14
/
+27
*
Added EntityResolver and DTDHandler (patch 101631) with test cases.
Lars Gustäbel
2000-09-24
3
-21
/
+54
*
Added back the InputSource class (patch 101630).
Lars Gustäbel
2000-09-24
4
-31
/
+138
*
Updated to final Attributes interface (patch 101632).
Lars Gustäbel
2000-09-24
2
-13
/
+72
*
Updated to new SAX method signatures (*NS, patch 101573).
Lars Gustäbel
2000-09-24
1
-6
/
+6
*
Updated to new *NS signatures (patch 101573).
Lars Gustäbel
2000-09-24
1
-25
/
+25
*
Added back missing argument to ignorableWhitespace signature.
Lars Gustäbel
2000-09-24
1
-1
/
+1
*
Bug fix to namespace handling in XMLGenerator (now adds declarations).
Lars Gustäbel
2000-09-24
1
-5
/
+13
*
Conform to the Python style guide.
Fred Drake
2000-09-24
2
-362
/
+367
*
Conform more closely with the Python style guide.
Fred Drake
2000-09-23
1
-11
/
+11
*
Use the public name for the Expat parser; "pyexpat" is deprecated.
Fred Drake
2000-09-23
1
-11
/
+7
*
Add a wrapper around the pyexpat module, making the "public" name of
Fred Drake
2000-09-23
1
-0
/
+4
*
More whitespace cleanup, to satisfy tabnanny.py. Don't trust -tt!
Guido van Rossum
2000-09-22
1
-15
/
+15
*
White space cleanup, including one item that was an error under -tt.
Fred Drake
2000-09-22
1
-5
/
+5
*
Paul Prescod <paul@prescod.net>:
Fred Drake
2000-09-21
1
-17
/
+27
*
SAXException.__getitem__(): Raise AttributeError instead of NameError.
Fred Drake
2000-09-21
1
-1
/
+1
*
fix bogus references to imp; makes test_minidom succeed
Jeremy Hylton
2000-09-21
1
-2
/
+2
*
Now uses make_parser to create its parser (patch 101573).
Lars Gustäbel
2000-09-21
1
-2
/
+2
*
Added the make_parser function (patch 101571).
Lars Gustäbel
2000-09-21
1
-2
/
+67
[prev]
[next]