1. 09fcb72 Issue #19356: Avoid using a C variabled named "_self", it's a reserved word in some C compilers. by Antoine Pitrou · 11 years ago
  2. 9937155 - followup for issue #18997, make _clear_joined_ptr static. by doko@ubuntu.com · 11 years ago
  3. 0648bf7 - followup for issue #18997, make _clear_joined_ptr static. by doko@ubuntu.com · 11 years ago
  4. 12f1828 Merge for Issue #18997: Issue #18997: fix ElementTree crash with using pickle and __getstate__. by Eli Bendersky · 11 years ago
  5. dd3661e Issue #18997: fix ElementTree crash with using pickle and __getstate__. by Eli Bendersky · 11 years ago
  6. 6eb50b1 Use consistent style for else if / else by Eli Bendersky · 11 years ago
  7. 532d03e Issue #15651: PEP 3121 refactoring for _elementtree by Eli Bendersky · 11 years ago
  8. 2ef710e Add missing check of PyDict_Update()'s return value in _elementtree.c CID 719637 by Christian Heimes · 11 years ago
  9. 7ed4294 Add missing check of PyDict_Update()'s return value in _elementtree.c CID 719637 by Christian Heimes · 11 years ago
  10. ced1226 (3.3->default): #18480: Add missing PyType_Ready call to _elementtree extension by Ronald Oussoren · 11 years ago
  11. 138d080 #18480: Add missing PyType_Ready call to _elementtree extension by Ronald Oussoren · 11 years ago
  12. 3fd8cbd Issue #18408: Fix _elementtree.c, don't call Python function from an expat by Victor Stinner · 11 years ago
  13. d917dcb Issue #18408: Fix constructors of _elementtree.c by Victor Stinner · 11 years ago
  14. 81aac73 Issue #18408: Fix create_extra() of _elementtree.c, raise MemoryError on memory by Victor Stinner · 11 years ago
  15. 71c8b7e Issue #18408: Different fixes in _elementtree.c to handle correctly MemoryError by Victor Stinner · 11 years ago
  16. 4d46343 Cleanup _elementtree.c by Victor Stinner · 11 years ago
  17. 5f0af23 Issue #18408: _elementtree.c now handles create_extra() failure by Victor Stinner · 11 years ago
  18. 6dc32b3 Issue #13612: handle unknown encodings without a buffer overflow. by Eli Bendersky · 11 years ago
  19. 66d53fa Issue #16986: ElementTree now correctly parses a string input not only when by Serhiy Storchaka · 11 years ago
  20. 6a55dc3 Issue #17989: fix typo in error message by Eli Bendersky · 11 years ago
  21. 08231a9 Issue #17901: fix TreeBuilder construction for an explicit element_factory=None by Eli Bendersky · 11 years ago
  22. ef9683b Issue #17989: element_setattro returned incorrect error value. by Eli Bendersky · 11 years ago
  23. 7b3022f Issue #13612: handle unknown encodings without a buffer overflow. by Eli Bendersky · 11 years ago
  24. 447b6e3 Issue #16986: ElementTree now correctly parses a string input not only when by Serhiy Storchaka · 11 years ago
  25. a369923 Get rid of ugly code duplication for ElementTree.parse when the accelerator by Eli Bendersky · 11 years ago
  26. 3a36756 Issue #17989: fix typo in error message by Eli Bendersky · 11 years ago
  27. 3a4fbd8 _elementtree.XMLParser._setevents should support any sequence, not just tuples by Eli Bendersky · 11 years ago
  28. 20c1cdd Issue #17901: fix TreeBuilder construction for an explicit element_factory=None by Eli Bendersky · 11 years ago
  29. 1a8c3e2 Issue #17989: element_setattro returned incorrect error value. by Eli Bendersky · 11 years ago
  30. 45f3d2f Revert c9674421d78e, leaving an additional comment by Eli Bendersky · 11 years ago
  31. 1859fe8 Simplify the code of get_attrib_from_keywords somewhat. by Eli Bendersky · 11 years ago
  32. ed8b86d Issue #17736: fix misleading comment in _elementtree.c Patch by Jonas Wagner by Eli Bendersky · 11 years ago
  33. d4cb4b7 Issue #17736: fix misleading comment in _elementtree.c Patch by Jonas Wagner by Eli Bendersky · 11 years ago
  34. ddcc679 Remove useless #define and #ifdefs by Eli Bendersky · 11 years ago
  35. bf05df2 Make license notices more consistent and remove old changelog. by Eli Bendersky · 11 years ago
  36. 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
  37. 4583990 Clean trailing whitespace in _elementtree.c by Eli Bendersky · 12 years ago
  38. 799e3ed Issue #16076: check for return value of PyTuple_New for args (following by Eli Bendersky · 12 years ago
  39. b8f6dc8 Issue #16076: fix refleak in pickling of Element. by Eli Bendersky · 12 years ago
  40. e6174ca Issue #16913: Fix Element.itertext()'s handling of text with XML entities. by Eli Bendersky · 12 years ago
  41. 698bdb2 Issue #16076: make _elementtree.Element pickle-able in a way that is compatible by Eli Bendersky · 12 years ago
  42. a873690 The get() and iter() are now able to accept keyword arguments. by Eli Bendersky · 12 years ago
  43. 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
  44. c194884 Sanitize and modernize some of the _elementtree code (see issue #16089). by Antoine Pitrou · 12 years ago
  45. ca8aa4a Issue #15144: Fix possible integer overflow when handling pointers as integer values, by using Py_uintptr_t instead of size_t. by Antoine Pitrou · 12 years ago
  46. 7b31b1a Raise ImportError if pyexpat's version is incompatible by Eli Bendersky · 12 years ago
  47. ef391ac Raise ImportError if pyexpat's version is incompatible by Eli Bendersky · 12 years ago
  48. b48ff7f Merge for #14988 by Eli Bendersky · 12 years ago
  49. 66099b0 ISsue #14988: restore Python 2's behavior of raising ImportError when unable to load pyexpat, instead of a SystemError/RuntimeError by Eli Bendersky · 12 years ago
  50. bce1666 Issue #14055: Add __sizeof__ support to _elementtree. by Martin v. Löwis · 12 years ago
  51. 113da64 Fix windows compilation problems caused by previous commit. by Eli Bendersky · 12 years ago
  52. 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
  53. c68e136 Fix unterminated keyword array passed to PyArg_ParseTupleAndKeywords by Eli Bendersky · 12 years ago
  54. 2b6b73e Issue #14007: implement doctype() method calling in XMLParser of _elementtree. by Eli Bendersky · 12 years ago
  55. 20d4174 We're always building _elementtree with USE_PYEXPAT_CAPI, so the #ifdefs in by Eli Bendersky · 12 years ago
  56. 52467b1 Issue #14007: make XMLParser a real subclassable type exported from _elementtree. +cleanups by Eli Bendersky · 12 years ago
  57. 48d358b Issue #14007: implemented the 'element_factory' feature of TreeBuilder in by Eli Bendersky · 12 years ago
  58. 58d548d Issue #14007: make TreeBuilder an actual type exposed from _elementtree, and subclassable. by Eli Bendersky · 12 years ago
  59. 737b173 Issue 14814: Add namespaces keyword arg to find(*) methods in _elementtree. by Eli Bendersky · 12 years ago
  60. b20df95 Issue #14849: setup Element data members to be assignable in subclasses by Eli Bendersky · 12 years ago
  61. 828efde Replace bootstrap imports with real C API calls. by Eli Bendersky · 12 years ago
  62. 08b8529 Fix Windows compilation errors by Eli Bendersky · 12 years ago
  63. ebf37a2 Fixes and enhancements to _elementtree: by Eli Bendersky · 12 years ago
  64. 0192ba3 Issue #14065: Added cyclic GC support to ET.Element by Eli Bendersky · 12 years ago
  65. 396e8fc Issue #13782: streamline argument type-checking in ET.Element by Eli Bendersky · 12 years ago
  66. 5b77d81 Issue #14207: the ParseError exception raised by _elementtree was made by Eli Bendersky · 12 years ago
  67. f996e77 Closes Issue #14246: _elementtree parser will now handle io.StringIO by Eli Bendersky · 12 years ago
  68. 865756a Issue #14178: Problem deleting slices with steps != +1 in the _elementtree module. by Eli Bendersky · 12 years ago
  69. 50eee83 Issue #14007: drop unused TreeBuilder().xml. by Florent Xicluna · 12 years ago
  70. 092af1f Issue #14128: Exposing Element as an actual type from _elementtree, rather than a factory function. by Eli Bendersky · 12 years ago
  71. a72a98f Issue #13988: cElementTree is deprecated and the _elementtree accelerator is automatically used whenever available. by Florent Xicluna · 12 years ago
  72. 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 · 12 years ago
  73. f24e7e6 Merge 3.2: issue #2892 by Florent Xicluna · 13 years ago
  74. 91d5193 Closes #2892: preserve iterparse events in case of SyntaxError. by Florent Xicluna · 13 years ago
  75. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  76. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  77. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  78. 499dfcf Issue #10833: Use PyUnicode_FromFormat() and PyErr_Format() instead of by Victor Stinner · 13 years ago
  79. bfc7bf0 _elementtree.c: remove trailing spaces by Victor Stinner · 13 years ago
  80. e239d23 Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for NULL by Alexander Belopolsky · 14 years ago
  81. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  82. e033e06 Issue #10093: ResourceWarnings are now issued when files and sockets are by Antoine Pitrou · 14 years ago
  83. f0f4514 Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 by Alexander Belopolsky · 14 years ago
  84. 0477bf3 Fix a crash in _elementtree related to lone unicode surrogates. by Victor Stinner · 14 years ago
  85. f15351d Merged revisions 78838-78839,78917,78919,78934,78937 via svnmerge from by Florent Xicluna · 14 years ago
  86. b173f78 add a replacement API for PyCObject, PyCapsule #5630 by Benjamin Peterson · 15 years ago
  87. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  88. 211c625 Issue #1717, stage 2: remove uses of tp_compare in Modules and most Objects. by Mark Dickinson · 15 years ago
  89. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  90. ba4105c #3247: Get rid of Py_FindMethod: by Amaury Forgeot d'Arc · 16 years ago
  91. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  92. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  93. 679db4a Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge from by Christian Heimes · 17 years ago
  94. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  95. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  96. 0269b91 SF patch # 1769767, get test_xml_etree_c working. More conversions are probably needed. by Neal Norwitz · 17 years ago
  97. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  98. 7569dfe Add a format specifier %R to PyUnicode_FromFormat(), which embeds by Walter Dörwald · 17 years ago
  99. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  100. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago