1. 2368704 Some cosmetic changes by Eli Bendersky · 11 years ago
  2. f8cf59e Issue #15083: Convert ElementTree doctests to unittests. by Serhiy Storchaka · 11 years ago
  3. aaa9780 Issue #9708: Fix support for iterparse(parser=...) argument per documentation. by Eli Bendersky · 12 years ago
  4. a80f761 Add some tests for XPath numeric indexing by Eli Bendersky · 12 years ago
  5. 25771b3 Issue #16922: fixed findtext() to return empty Unicode string instead of empty bytes object when there's no text. by Eli Bendersky · 12 years ago
  6. c31f773 clean trailing whitespace by Eli Bendersky · 12 years ago
  7. ceab1a9 Issues #15083 and #16992: port find.* method tests to unittest by Eli Bendersky · 12 years ago
  8. e6174ca Issue #16913: Fix Element.itertext()'s handling of text with XML entities. by Eli Bendersky · 12 years ago
  9. 458c0d5 normalize whitespace by Eli Bendersky · 12 years ago
  10. 698bdb2 Issue #16076: make _elementtree.Element pickle-able in a way that is compatible by Eli Bendersky · 12 years ago
  11. a873690 The get() and iter() are now able to accept keyword arguments. by Eli Bendersky · 12 years ago
  12. 52280c4 Skip a test correctly for the C-version. The decorator doesn't really work by Eli Bendersky · 12 years ago
  13. 7ec45f7 For Issue #16076: make sure that pickling of Element objects is tested, and do by Eli Bendersky · 12 years ago
  14. ee32931 Issue #16089: Allow ElementTree.TreeBuilder to work again with a non-Element element_factory (fixes a regression in SimpleTAL). by Antoine Pitrou · 12 years ago
  15. ab9b661 #15970: merge with 3.2. by Ezio Melotti · 12 years ago
  16. c90111f #15970: xml.etree.ElementTree now serializes correctly the empty HTML elements "meta" and "param". by Ezio Melotti · 12 years ago
  17. 426e248 Preserve the invariant tostring(elem) == b''.join(tostringlist(elem)) and add a test to make sure it keeps working by Eli Bendersky · 12 years ago
  18. 00f402b Close #1767933: Badly formed XML using etree and utf-16. Patch by Serhiy Storchaka, with some minor fixes by me by Eli Bendersky · 12 years ago
  19. 6319e0f Make the test more resilient to test-run order (closes #15075) by Eli Bendersky · 12 years ago
  20. 307693a Skip XincludeTest entirely instead of just ignoring failures, because it may segfault, depending on the order of running tests by Eli Bendersky · 12 years ago
  21. 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 · 12 years ago
  22. 175fada mark problematic test as expected failure - investigating by Eli Bendersky · 12 years ago
  23. 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 · 12 years ago
  24. 2b6b73e Issue #14007: implement doctype() method calling in XMLParser of _elementtree. by Eli Bendersky · 12 years ago
  25. 52467b1 Issue #14007: make XMLParser a real subclassable type exported from _elementtree. +cleanups by Eli Bendersky · 12 years ago
  26. 48d358b Issue #14007: implemented the 'element_factory' feature of TreeBuilder in by Eli Bendersky · 12 years ago
  27. 58d548d Issue #14007: make TreeBuilder an actual type exposed from _elementtree, and subclassable. by Eli Bendersky · 12 years ago
  28. 737b173 Issue 14814: Add namespaces keyword arg to find(*) methods in _elementtree. by Eli Bendersky · 12 years ago
  29. b20df95 Issue #14849: setup Element data members to be assignable in subclasses by Eli Bendersky · 12 years ago
  30. ebf37a2 Fixes and enhancements to _elementtree: by Eli Bendersky · 12 years ago
  31. 0261d75 Removing the test of Element that causes ref-leak in GC (issue #14464). by Eli Bendersky · 12 years ago
  32. a5e8220 Fix the tests of GC collection in ET.Element according to Benjamin's recommendations by Eli Bendersky · 12 years ago
  33. 0192ba3 Issue #14065: Added cyclic GC support to ET.Element by Eli Bendersky · 12 years ago
  34. 396e8fc Issue #13782: streamline argument type-checking in ET.Element by Eli Bendersky · 12 years ago
  35. 6e33525 fix trailing whitespace by Eli Bendersky · 12 years ago
  36. 2b71140 Add a test that makes sure TreeBuilder can be passed element_factory in the by Eli Bendersky · 12 years ago
  37. 5b77d81 Issue #14207: the ParseError exception raised by _elementtree was made by Eli Bendersky · 12 years ago
  38. f996e77 Closes Issue #14246: _elementtree parser will now handle io.StringIO by Eli Bendersky · 12 years ago
  39. 865756a Issue #14178: Problem deleting slices with steps != +1 in the _elementtree module. by Eli Bendersky · 12 years ago
  40. 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 · 12 years ago
  41. 092af1f Issue #14128: Exposing Element as an actual type from _elementtree, rather than a factory function. by Eli Bendersky · 12 years ago
  42. 1639505 fix the _namespace_map cleanup for cElementTree tests. by Florent Xicluna · 12 years ago
  43. e59a306 The C accelerator was not always imported for cElementTree's tests. (there's still an issue with --huntrleaks switch) by Florent Xicluna · 12 years ago
  44. 292f9a8 make TestAccelerator[Not]Imported for ElementTree more robust by Eli Bendersky · 12 years ago
  45. da57819 in the tests of ElementTree, verify that the C accelerator is imported or not imported as expected by Eli Bendersky · 12 years ago
  46. a72a98f Issue #13988: cElementTree is deprecated and the _elementtree accelerator is automatically used whenever available. by Florent Xicluna · 12 years ago
  47. f24e7e6 Merge 3.2: issue #2892 by Florent Xicluna · 13 years ago
  48. 91d5193 Closes #2892: preserve iterparse events in case of SyntaxError. by Florent Xicluna · 13 years ago
  49. 6b4883d PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. by Antoine Pitrou · 13 years ago
  50. 8f36af7 Normalize the encoding names for Latin-1 and UTF-8 to 'latin-1' and 'utf-8'. by Marc-André Lemburg · 13 years ago
  51. 90b2067 #10777: fix iteration over dict keys while mutating the dict. by Georg Brandl · 14 years ago
  52. ec30b3d Fix Issue10205 - XML QName error when different tags have same QName. by Senthil Kumaran · 14 years ago
  53. 1f7fffb #2830: add html.escape() helper and move cgi.escape() uses in the standard library to it. It defaults to quote=True and also escapes single quotes, which makes casual use safer. The cgi.escape() interface is not touched, but emits a (silent) PendingDeprecationWarning. by Georg Brandl · 14 years ago
  54. b86680e Explicitly close some files (from issue #10093) by Antoine Pitrou · 14 years ago
  55. f99a15c #9964: fix running test_xml_etree under -OO. by Georg Brandl · 14 years ago
  56. ba8a986 Fix xml.etree.ElementInclude to include the tail of the current node. Issue #6231 by Florent Xicluna · 14 years ago
  57. 14bd1c3 Fix BytesWarning in test_xml_etree, introduced with r83851. by Florent Xicluna · 14 years ago
  58. c17f172 Issue #8047: Fix the xml.etree serializer to return bytes by default. by Florent Xicluna · 14 years ago
  59. 6c6f851 Issue #9425: skip tests if a filename is not encodable by Victor Stinner · 14 years ago
  60. 41fe615 (partially) by Florent Xicluna · 14 years ago
  61. 886af96 Merged revisions 78966,78970,79018,79026-79027,79055,79156,79159,79163-79164,79173,79176,79194,79208,79212 via svnmerge from by Benjamin Peterson · 14 years ago
  62. f15351d Merged revisions 78838-78839,78917,78919,78934,78937 via svnmerge from by Florent Xicluna · 14 years ago
  63. 99f69ee Merged revisions 78125 via svnmerge from by Antoine Pitrou · 14 years ago
  64. c77dd32 Issue #6233: ElementTree failed converting unicode characters to XML by Antoine Pitrou · 14 years ago
  65. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  66. 05e8be1 Merged revisions 60990-61002 via svnmerge from by Christian Heimes · 16 years ago
  67. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  68. b62e8a8 Two changes that are definitely problem-free and avoid calling print() by Guido van Rossum · 17 years ago
  69. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  70. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  71. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  72. 7131f84 Fix a bunch of doctests with the -d option of refactor.py. by Guido van Rossum · 17 years ago
  73. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  74. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  75. 8911ca3d added encoding tests to ElementTree/cElementTree tests by Fredrik Lundh · 19 years ago
  76. 9ed7306 Subversion settings: svn:ignore *.pyc *.pyo svn:eol-style native by Armin Rigo · 19 years ago
  77. c6730e1 move the xml package implementation to xmlcore, and adjust the tests to by Fred Drake · 19 years ago
  78. 2a60d9a added xml.etree test (enough of the ElementTree selftest to by Fredrik Lundh · 19 years ago