1. 91b0bc2 Issue #20331: Fixed possible FD leaks in various modules: by Serhiy Storchaka · 12 years ago
  2. 98a0d06 Closes #12828: add docstring text noting this is an internal-only module by Andrew Kuchling · 12 years ago
  3. 72a9854 remove duplicate method (closes #19127) by Benjamin Peterson · 12 years ago
  4. b5bc353 #18741: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 12 years ago
  5. 2acc525 Issue #17011: Fix caching of xpath path when namespaces are present. by Eli Bendersky · 12 years ago
  6. 54ad7e3 Issue #18347: ElementTree's html serializer now preserves the case of closing tags. by Christian Heimes · 12 years ago
  7. 3eab6b3 Issue #17606: Fixed support of encoded byte strings in the XMLGenerator by Serhiy Storchaka · 12 years ago
  8. 64949fa merge with 3.2 by Georg Brandl · 12 years ago
  9. c502df4 Issue #17915: Fix interoperability of xml.sax with file objects returned by by Georg Brandl · 12 years ago
  10. 72cdb5c Issue #11367: fix documentation of some find* methods in ElementTree by Eli Bendersky · 12 years ago
  11. 7343cb0 Issue #11367: fix documentation of some find* methods in ElementTree by Eli Bendersky · 12 years ago
  12. 9fef188 Issue #1470548: XMLGenerator now works with binary output streams. by Serhiy Storchaka · 13 years ago
  13. 88efc52 Issue #1470548: XMLGenerator now works with binary output streams. by Serhiy Storchaka · 13 years ago
  14. aaa9780 Issue #9708: Fix support for iterparse(parser=...) argument per documentation. by Eli Bendersky · 13 years ago
  15. 564e4d8 #11379: merge with 3.2. by Ezio Melotti · 13 years ago
  16. da4b5b8 #11379: rephrase minidom documentation to use the term "minimal" instead of "lightweight". Patch by Éric Araujo. by Ezio Melotti · 13 years ago
  17. f1b045f Describe the default_namespace parameter of ElemetTree.write. by Serhiy Storchaka · 13 years ago
  18. 03530b9 Describe the default_namespace parameter of ElemetTree.write. by Serhiy Storchaka · 13 years ago
  19. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 13 years ago
  20. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 13 years ago
  21. ee32931 Issue #16089: Allow ElementTree.TreeBuilder to work again with a non-Element element_factory (fixes a regression in SimpleTAL). by Antoine Pitrou · 13 years ago
  22. ab9b661 #15970: merge with 3.2. by Ezio Melotti · 13 years ago
  23. c90111f #15970: xml.etree.ElementTree now serializes correctly the empty HTML elements "meta" and "param". by Ezio Melotti · 13 years ago
  24. f90fc68 fix whitespace woes by Eli Bendersky · 13 years ago
  25. 43cc5f2 Optimize tostringlist by taking the stream class outside the function. It's now 2x faster on short calls. Related to #1767933 by Eli Bendersky · 13 years ago
  26. 426e248 Preserve the invariant tostring(elem) == b''.join(tostringlist(elem)) and add a test to make sure it keeps working by Eli Bendersky · 13 years ago
  27. 00f402b Close #1767933: Badly formed XML using etree and utf-16. Patch by Serhiy Storchaka, with some minor fixes by me by Eli Bendersky · 13 years ago
  28. 8a80502 Issue #15296: Fix minidom.toxml/toprettyxml for non-unicode encodings. Patch by Serhiy Storchaka, with some minor style adjustments by me. by Eli Bendersky · 13 years ago
  29. a1c974a Minor refactoring in xml.etree.ElementTree doctype parser. by Florent Xicluna · 13 years ago
  30. 27cbb19 Removed _SimpleElementPath and its flaky test. The test monkey-patches the module, which causes other failures and fails itself depending on the order tests are run. by Eli Bendersky · 13 years ago
  31. 64d11e6 Replace the iter/itertext methods of Element in _elementtree with true C implementations, instead of the bootstrapped Python code. In addition to being cleaner (removing the last remains of the bootstrapping code in _elementtree), this gives a 10x performance boost for iter() on large documents. by Eli Bendersky · 13 years ago
  32. 737b173 Issue 14814: Add namespaces keyword arg to find(*) methods in _elementtree. by Eli Bendersky · 13 years ago
  33. 396e8fc Issue #13782: streamline argument type-checking in ET.Element by Eli Bendersky · 13 years ago
  34. 8cf4b51 xml.dom.minidom: add more __slots__ to limit resource usage. by Florent Xicluna · 13 years ago
  35. 6c75301 xml.dom: fix typo, drop unused imports. by Florent Xicluna · 13 years ago
  36. fb06746 Flatten nested try ... finally, try ... except. by Florent Xicluna · 13 years ago
  37. 75b5e7e Issue #14007: accept incomplete TreeBuilder objects (missing start/end/data/close) for the Python implementation as well. Add disabled tests for the doctype() method. by Florent Xicluna · 13 years ago
  38. 67245a6 Issue #14168: Check for presence of _attrs before accessing it. by Martin v. Löwis · 13 years ago
  39. 092af1f Issue #14128: Exposing Element as an actual type from _elementtree, rather than a factory function. by Eli Bendersky · 13 years ago
  40. 7b77188 Create _attr/_attrNS lazily. by Martin v. Löwis · 14 years ago
  41. 14aa280 Use __slots__ throughout instead of __dict__, to reduce the memory usage. by Martin v. Löwis · 14 years ago
  42. 1639505 fix the _namespace_map cleanup for cElementTree tests. by Florent Xicluna · 14 years ago
  43. a72a98f Issue #13988: cElementTree is deprecated and the _elementtree accelerator is automatically used whenever available. by Florent Xicluna · 14 years ago
  44. f4bdf4e Issue #13988: move the python bootstrap code to cElementTree.py, and remove obsolete code for Python 2.4 and 2.5. by Florent Xicluna · 14 years ago
  45. 313b2ad Fix imports in xml.dom. by Florent Xicluna · 14 years ago
  46. def4728 #4147: merge with 3.2. by Ezio Melotti · 14 years ago
  47. 8008f2a #4147: minidom's toprettyxml no longer adds whitespace around a text node when it is the only child of an element. Initial patch by Dan Kenigsberg. by Ezio Melotti · 14 years ago
  48. 91d5193 Closes #2892: preserve iterparse events in case of SyntaxError. by Florent Xicluna · 14 years ago
  49. f24e7e6 Merge 3.2: issue #2892 by Florent Xicluna · 14 years ago
  50. 1d30db4 merge #4147: minidom's toprettyxml no longer adds whitespace to text nodes. by R David Murray · 14 years ago
  51. 791744b #4147: minidom's toprettyxml no longer adds whitespace to text nodes. by R David Murray · 14 years ago
  52. 3663aba (merge 3.2) Issue #12451: xml.dom.pulldom: parse() now opens files in binary by Victor Stinner · 14 years ago
  53. bbdc08e Issue #12451: xml.dom.pulldom: parse() now opens files in binary mode instead by Victor Stinner · 14 years ago
  54. 3909da7 (merge 3.2) Issue #12451: The XInclude default loader of xml.etree now decodes by Victor Stinner · 14 years ago
  55. eaf399e Issue #12451: The XInclude default loader of xml.etree now decodes files from by Victor Stinner · 14 years ago
  56. 8c6f88e remove __version__s dependent on subversion keyword expansion (closes #12221) by Benjamin Peterson · 14 years ago
  57. 867754e merge 11164 by Martin v. Löwis · 14 years ago
  58. 2f48d89 Stop trying to use _xmlplus in the xml module. Closes #11164. by Martin v. Löwis · 14 years ago
  59. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 14 years ago
  60. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  61. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 14 years ago
  62. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  63. 90b2067 #10777: fix iteration over dict keys while mutating the dict. by Georg Brandl · 15 years ago
  64. c95c918 Guard against rogue tuples. by Georg Brandl · 15 years ago
  65. b56c0e2 #10661: give QName a nicer repr. by Georg Brandl · 15 years ago
  66. c524cff Merged revisions 85530,85532-85534,85538-85543,85546-85548 via svnmerge from by Georg Brandl · 15 years ago
  67. ec30b3d Fix Issue10205 - XML QName error when different tags have same QName. by Senthil Kumaran · 15 years ago
  68. 90b60a6 close the source's byte stream by Benjamin Peterson · 15 years ago
  69. e033e06 Issue #10093: ResourceWarnings are now issued when files and sockets are by Antoine Pitrou · 15 years ago
  70. 0619ae7 Merged revisions 85858 via svnmerge from by Antoine Pitrou · 15 years ago
  71. 6b03ee6 Issue #5027: The standard `xml` namespace is now understood by by Antoine Pitrou · 15 years ago
  72. a90032a #1343: Add short_empty_elements option to XMLGenerator. by R. David Murray · 15 years ago
  73. 3844f0d #6098: Refrain from claiming DOM level 3 conformance in minidom. by Georg Brandl · 15 years ago
  74. b9cd72a #5762: fix handling of empty namespace in minidom, which would result in AttributeError on toxml(). by Georg Brandl · 15 years ago
  75. 91d2a3f #5355 followup: add unit test for new dictionaries, and provide submodules from xml.parsers.expat as advertised. by Georg Brandl · 15 years ago
  76. 914a218 Merged revisions 82629,82632,82724,82757-82758,82760-82763,82798-82799,82801 via svnmerge from by Georg Brandl · 15 years ago
  77. ba8a986 Fix xml.etree.ElementInclude to include the tail of the current node. Issue #6231 by Florent Xicluna · 15 years ago
  78. c17f172 Issue #8047: Fix the xml.etree serializer to return bytes by default. by Florent Xicluna · 15 years ago
  79. 688b9e3 #777884: make .normalize() do nothing for childless nodes, instead of raising an exception by Andrew M. Kuchling · 15 years ago
  80. 297d972 #1434090: properly append child in expatbuilder doctype handler. by Georg Brandl · 15 years ago
  81. 17173cf http://bugs.python.org/issue8832 Issue minidom.unlink with a context manager by Kristján Valur Jónsson · 15 years ago
  82. f15351d Merged revisions 78838-78839,78917,78919,78934,78937 via svnmerge from by Florent Xicluna · 15 years ago
  83. 99f69ee Merged revisions 78125 via svnmerge from by Antoine Pitrou · 16 years ago
  84. 5431928 Merged revisions 78123 via svnmerge from by Antoine Pitrou · 16 years ago
  85. c77dd32 Issue #6233: ElementTree failed converting unicode characters to XML by Antoine Pitrou · 16 years ago
  86. 8f6713f Merged revisions 76235 via svnmerge from by Benjamin Peterson · 16 years ago
  87. a0dfa82 Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-75433,75437,75445,75501,75551,75572,75589-75591,75657,75742,75868,75952-75957,76057,76105,76139,76143,76162,76223 via svnmerge from by Benjamin Peterson · 16 years ago
  88. b044b2a Merged revisions 74821,74828-74831,74833,74835 via svnmerge from by Georg Brandl · 16 years ago
  89. fe99105 Use true booleans and PEP8 for argdefaults. by Georg Brandl · 16 years ago
  90. d76c8da Merged revisions 73623-73624 via svnmerge from by Benjamin Peterson · 16 years ago
  91. 0289b15 Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from by Benjamin Peterson · 16 years ago
  92. dc6da8a Merged revisions 71414 via svnmerge from by R. David Murray · 16 years ago
  93. a56c467 Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from by Mark Dickinson · 17 years ago
  94. a7f4f5a #2501 xml.sax.parser doesn't terminate when given a filename; enable some more tests! by Benjamin Peterson · 17 years ago
  95. 1afc169 Make a new urllib package . by Jeremy Hylton · 17 years ago
  96. 794652d Issue 2918: Merge StringIO and cStringIO. by Alexandre Vassalotti · 17 years ago
  97. 2b7411d Merged revisions 63542-63544,63546,63553,63563-63564,63567,63569,63576 via svnmerge from by Benjamin Peterson · 17 years ago
  98. 2a691a8 Merged revisions 62021,62029,62035-62038,62043-62044,62052-62053 via svnmerge from by Benjamin Peterson · 17 years ago
  99. 05e8be1 Merged revisions 60990-61002 via svnmerge from by Christian Heimes · 17 years ago
  100. c9543e4 Removed the new module by Christian Heimes · 18 years ago