1. 4a21e57 bpo-40268: Remove unused structmember.h includes (GH-19530) by Victor Stinner · 4 years, 4 months ago
  2. 402e1cd bpo-31758: Prevent crashes when using an uninitialized _elementtree.XMLParser object (GH-3997) by Oren Milman · 4 years, 4 months ago
  3. 8f87eef bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (GH-19472) by Serhiy Storchaka · 4 years, 4 months ago
  4. cd8295f bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345) by Serhiy Storchaka · 4 years, 4 months ago
  5. 016bdd5 bpo-40024: Update _elementtree to use PyModule_AddType() (GH-19205) by Dong-hee Na · 4 years, 5 months ago
  6. f707d94 bpo-39968: Convert extension modules' macros of get_module_state() to inline functions (GH-19017) by Hai Shi · 4 years, 5 months ago
  7. dccd41e bpo-39822: Use NULL instead of None for empty attrib in Element. (GH-18735) by Serhiy Storchaka · 4 years, 5 months ago
  8. 88944a4 bpo-39903: Fix double decref in _elementtree.Element.__getstate__ (GH-18850) by Serhiy Storchaka · 4 years, 5 months ago
  9. dffe4c0 bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601) by Andy Lester · 4 years, 5 months ago
  10. 4edc95c bpo-39495: Remove default value from C impl of TreeBuilder.start (GH-18275) by Shantanu · 4 years, 5 months ago
  11. 1b55b65 bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521) by Dong-hee Na · 4 years, 6 months ago
  12. ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 4 years, 6 months ago
  13. 1b18455 bpo-38392: PyObject_GC_Track() validates object in debug mode (GH-16615) by Victor Stinner · 4 years, 10 months ago
  14. 279f446 bpo-37206: Unrepresentable default values no longer represented as None. (GH-13933) by Serhiy Storchaka · 5 years ago
  15. f02ea62 bpo-36543: Remove old-deprecated ElementTree features. (GH-12707) by Serhiy Storchaka · 5 years ago
  16. c6cb4cd bpo-37399: Correctly attach tail text to the last element/comment/pi (GH-14856) by Stefan Behnel · 5 years ago
  17. 59ad110 bpo-37547: add _PyObject_CallMethodOneArg (GH-14685) by Jeroen Demeyer · 5 years ago
  18. 196a530 bpo-37483: add _PyObject_CallOneArg() function (#14558) by Jeroen Demeyer · 5 years ago
  19. 2ff58a2 bpo-37194: Add a new public PyObject_CallNoArgs() function (GH-13890) by Victor Stinner · 5 years ago
  20. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 5 years ago
  21. 14514d9 bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375) by Zackery Spytz · 5 years ago
  22. 351c674 bpo-35983: skip trashcan for subclasses (GH-11841) by Jeroen Demeyer · 5 years ago
  23. 6b95149 bpo-36811: Fix a C compiler warning in _elementtree.c. (GH-13109) by Stefan Behnel · 5 years ago
  24. 4754168 bpo-28238: Implement "{*}tag" and "{ns}*" wildcard tag selection support for ElementPath, and extend the surrounding tests and docs. (GH-12997) by Stefan Behnel · 5 years ago
  25. dde3eeb bpo-36676: Namespace prefix aware parsing support for the ET.XMLParser target (GH-12885) by Stefan Behnel · 5 years ago
  26. 43851a2 bpo-36673: Implement comment/PI parsing support for the TreeBuilder in ElementTree. (#12883) by Stefan Behnel · 5 years ago
  27. a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 5 years ago
  28. d2a75c6 bpo-35502: Fix reference leaks in ElementTree.TreeBuilder. (GH-11170) by Serhiy Storchaka · 6 years ago
  29. 8905fcc bpo-35454: Fix miscellaneous minor issues in error handling. (#11077) by Serhiy Storchaka · 6 years ago
  30. 62be742 bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749) by Serhiy Storchaka · 6 years ago
  31. 9f3ed3e Fix error handling bugs in _elementtree.c. (GH-10060) by Zackery Spytz · 6 years ago
  32. f081fd8 bpo-35013: Add more type checks for children of Element. (GH-9944) by Serhiy Storchaka · 6 years ago
  33. 6f906b3 bpo-35008: Fix possible leaks in Element.__setstate__(). (GH-9924) by Serhiy Storchaka · 6 years ago
  34. b11c566 bpo-34941: Fix searching Element subclasses. (GH-9766) by Serhiy Storchaka · 6 years ago
  35. b2953fa bpo-34739: Get rid of tp_getattro in xml.etree.ElementTree.XMLParser. (GH-9420) by Serhiy Storchaka · 6 years ago
  36. cb5778f bpo-34623: Use XML_SetHashSalt in _elementtree (GH-9146) by Christian Heimes · 6 years ago
  37. ee98e7b bpo-34218: Fix a leak in _elementtree.c introduced in GH-6769. (GH-8460) by Serhiy Storchaka · 6 years ago
  38. 02ec92f bpo-29209: Remove old-deprecated features in ElementTree. (GH-6769) by Serhiy Storchaka · 6 years ago
  39. a5552f0 bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746) by Serhiy Storchaka · 7 years ago
  40. 39ecb9c bpo-31728: Prevent crashes in _elementtree due to unsafe cleanup of Element.text and Element.tail (#3924) by Oren Milman · 7 years ago
  41. e727d41 bpo-31499, xml.etree: Fix xmlparser_gc_clear() crash (#3641) by Victor Stinner · 7 years ago
  42. c8d8e15 bpo-31455: Fix an assertion failure in ElementTree.XMLParser(). (#3545) by scoder · 7 years ago
  43. d056818 bpo-31428: Prevent raising a SystemError in case the memo arg of ElementTree.Element.__deepcopy__() isn't a dictionary. (#3512) by Oren Milman · 7 years ago
  44. a6296d3 bpo-31095: fix potential crash during GC (GH-2974) by INADA Naoki · 7 years ago
  45. b136f11 bpo-30892: Fix _elementtree module initialization (#2647) by Victor Stinner · 7 years ago
  46. 6969eaf bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955) by Serhiy Storchaka · 7 years ago
  47. bf623ae bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096) by Serhiy Storchaka · 7 years ago
  48. b879fe8 Expand the PySlice_GetIndicesEx macro. (#1023) by Serhiy Storchaka · 7 years ago
  49. 762ec97 bpo-29204: Emit warnings for already deprecated ElementTree features. (#773) by Serhiy Storchaka · 7 years ago
  50. 576def0 bpo-27863: Fixed multiple crashes in ElementTree. (#765) by Serhiy Storchaka · 7 years ago
  51. 0c4a828 Run Argument Clinic: METH_VARARGS=>METH_FASTCALL by Victor Stinner · 8 years ago
  52. 47bdc40 Merge from 3.6. by Serhiy Storchaka · 8 years ago
  53. 690e81f Merge from 3.5. by Serhiy Storchaka · 8 years ago
  54. 18f018c Issue #28871: Fixed a crash when deallocate deep ElementTree. by Serhiy Storchaka · 8 years ago
  55. 5ab81d7 Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of dict. by Serhiy Storchaka · 8 years ago
  56. 5abaa2b Use PyObject_CallFunctionObjArgs() by Victor Stinner · 8 years ago
  57. f561634 Use _PyObject_CallMethodIdObjArgs() in _elementtree by Victor Stinner · 8 years ago
  58. 7bfb42d Issue #28858: Remove _PyObject_CallArg1() macro by Victor Stinner · 8 years ago
  59. de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 8 years ago
  60. 4778eab Replace PyObject_CallFunction() with fastcall by Victor Stinner · 8 years ago
  61. 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 8 years ago
  62. 85b0f5b Added the const qualifier to char* variables that refer to readonly internal by Serhiy Storchaka · 8 years ago
  63. 3b73ea1 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  64. f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  65. 84d8baa Fix xml.etree.ElementTree.Element.getiterator() by Victor Stinner · 8 years ago
  66. 2f8bfef replace PY_SIZE_MAX with SIZE_MAX by Benjamin Peterson · 8 years ago
  67. ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 8 years ago
  68. 3466bde Avoid calling functions with an empty string as format string by Victor Stinner · 8 years ago
  69. 559bb6a Rename _PyObject_FastCall() to _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  70. 7fbac45 _elementtree: deepcopy() now uses fast call by Victor Stinner · 8 years ago
  71. f0ee5cc Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag. by Serhiy Storchaka · 8 years ago
  72. 9062c26 Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag. by Serhiy Storchaka · 8 years ago
  73. f01e408 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  74. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  75. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  76. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  77. 576f132 Issue #20440: Cleaning up the code by using Py_SETREF. by Serhiy Storchaka · 9 years ago
  78. 1ed017a Issue #20440: Cleaning up the code by using Py_SETREF and Py_CLEAR. by Serhiy Storchaka · 9 years ago
  79. 726fc13 Issue #20440: More use of Py_SETREF. by Serhiy Storchaka · 9 years ago
  80. 191321d Issue #20440: More use of Py_SETREF. by Serhiy Storchaka · 9 years ago
  81. ea8c431 Issue #24103: Fixed possible use after free in ElementTree.XMLPullParser. by Serhiy Storchaka · 9 years ago
  82. bc4ded95 Issue #24103: Fixed possible use after free in ElementTree.XMLPullParser. by Serhiy Storchaka · 9 years ago
  83. 060ed71 Issue #25869: Optimized deepcopying ElementTree; it is now 20 times faster. by Serhiy Storchaka · 9 years ago
  84. 22adf2a Issue #25873: Optimized iterating ElementTree. by Serhiy Storchaka · 9 years ago
  85. 47a9d59 Issue #25902: Fixed various refcount issues in ElementTree iteration. by Serhiy Storchaka · 9 years ago
  86. 66c08d9 Issue #25902: Fixed various refcount issues in ElementTree iteration. by Serhiy Storchaka · 9 years ago
  87. a9406e7 Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
  88. 5c4064e Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
  89. 36ff997 Issue #25638: Optimized ElementTree parsing; it is now 10% faster. by Serhiy Storchaka · 9 years ago
  90. 956244b Fixed possible leaks in ElementTree parser. by Serhiy Storchaka · 9 years ago
  91. a29eb08 Fixed possible leaks in ElementTree parser. by Serhiy Storchaka · 9 years ago
  92. 9fcbdf4 Fixed possible leak in ElementTree.Element.iter(). by Serhiy Storchaka · 9 years ago
  93. d6a69d8 Fixed possible leak in ElementTree.Element.iter(). by Serhiy Storchaka · 9 years ago
  94. 9ec5e25 Issue #25638: Optimized ElementTree.iterparse(); it is now 2x faster. by Serhiy Storchaka · 9 years ago
  95. f2fdfe1 Issue25814: Propagate all errors from custom XML parser handlers by Serhiy Storchaka · 9 years ago
  96. 7ff276f Issue25814: Propagate all errors from custom XML parser handlers by Serhiy Storchaka · 9 years ago
  97. 7efaf95 Issue25814: Propagate all errors from custom XML parser handlers by Serhiy Storchaka · 9 years ago
  98. 097a664 Issue #19687: Fixed possible integer overflows in ElementTree. by Serhiy Storchaka · 9 years ago
  99. dde0815 Issue #7990: dir() on ElementTree.Element now lists properties: "tag", by Serhiy Storchaka · 9 years ago
  100. 3987fef Issue #25691: Fixed crash on deleting ElementTree.Element attributes. by Serhiy Storchaka · 9 years ago