summaryrefslogtreecommitdiffstats
path: root/Modules/_elementtree.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #20440: Cleaning up the code by using Py_SETREF.Serhiy Storchaka2016-01-051-3/+1
* Issue #20440: Cleaning up the code by using Py_SETREF and Py_CLEAR.Serhiy Storchaka2015-12-271-5/+1
* Issue #20440: More use of Py_SETREF.Serhiy Storchaka2015-12-271-22/+12
|\
| * Issue #20440: More use of Py_SETREF.Serhiy Storchaka2015-12-271-24/+14
* | Issue #24103: Fixed possible use after free in ElementTree.XMLPullParser.Serhiy Storchaka2015-12-241-19/+13
|\ \ | |/
| * Issue #24103: Fixed possible use after free in ElementTree.XMLPullParser.Serhiy Storchaka2015-12-241-19/+13
* | Issue #25869: Optimized deepcopying ElementTree; it is now 20 times faster.Serhiy Storchaka2015-12-211-24/+54
* | Issue #25873: Optimized iterating ElementTree.Serhiy Storchaka2015-12-211-158/+101
* | Issue #25902: Fixed various refcount issues in ElementTree iteration.Serhiy Storchaka2015-12-211-32/+58
|\ \ | |/
| * Issue #25902: Fixed various refcount issues in ElementTree iteration.Serhiy Storchaka2015-12-211-32/+58
* | Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-191-1/+1
|\ \ | |/
| * Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-191-1/+1
* | Issue #25638: Optimized ElementTree parsing; it is now 10% faster.Serhiy Storchaka2015-12-101-9/+20
* | Fixed possible leaks in ElementTree parser.Serhiy Storchaka2015-12-091-2/+8
|\ \ | |/
| * Fixed possible leaks in ElementTree parser.Serhiy Storchaka2015-12-091-2/+8
* | Fixed possible leak in ElementTree.Element.iter().Serhiy Storchaka2015-12-091-11/+11
|\ \ | |/
| * Fixed possible leak in ElementTree.Element.iter().Serhiy Storchaka2015-12-091-11/+11
* | Issue #25638: Optimized ElementTree.iterparse(); it is now 2x faster.Serhiy Storchaka2015-12-071-16/+19
* | Issue25814: Propagate all errors from custom XML parser handlersSerhiy Storchaka2015-12-061-88/+39
|\ \ | |/
| * Issue25814: Propagate all errors from custom XML parser handlersSerhiy Storchaka2015-12-061-88/+39
| |\
| | * Issue25814: Propagate all errors from custom XML parser handlersSerhiy Storchaka2015-12-061-88/+39
| | * Issue #19687: Fixed possible integer overflows in ElementTree.Serhiy Storchaka2015-11-251-10/+34
* | | Issue #7990: dir() on ElementTree.Element now lists properties: "tag",Serhiy Storchaka2015-11-251-76/+94
|/ /
* | Issue #25691: Fixed crash on deleting ElementTree.Element attributes.Serhiy Storchaka2015-11-231-0/+6
|\ \ | |/
| * Issue #25691: Fixed crash on deleting ElementTree.Element attributes.Serhiy Storchaka2015-11-231-0/+6
* | Issue #19687: Fixed memory leak on failed Element slice assignment.Serhiy Storchaka2015-11-221-21/+15
|\ \ | |/
| * Issue #19687: Fixed memory leak on failed Element slice assignment.Serhiy Storchaka2015-11-221-21/+15
* | Issue #19176: Fixed doctype() related bugs in C implementation of ElementTree.Serhiy Storchaka2015-06-291-17/+35
|\ \ | |/
| * Issue #19176: Fixed doctype() related bugs in C implementation of ElementTree.Serhiy Storchaka2015-06-291-14/+21
* | Issue #24091: Fixed various crashes in corner cases in C implementation ofSerhiy Storchaka2015-05-181-46/+96
|\ \ | |/
| * Issue #24091: Fixed various crashes in corner cases in C implementation ofSerhiy Storchaka2015-05-181-47/+97
* | Issue #24001: Argument Clinic converters now use accept={type}Larry Hastings2015-05-041-2/+2
* | Issue #20159. Converted the _elementtree module to Argument Clinic.Serhiy Storchaka2015-05-041-400/+556
* | Issue #23450: Fixed possible integer overflows.Serhiy Storchaka2015-02-161-24/+33
* | Issue #22156: Fix some "comparison between signed and unsigned integers"Victor Stinner2014-08-151-1/+1
|/
* Issue #19815: Fix segfault when parsing empty namespace declaration.Eli Bendersky2013-11-281-1/+4
|\
| * Fix indentation from previous commitEli Bendersky2013-11-281-2/+2
| * Issue #19815: Fix segfault when parsing empty namespace declaration.Eli Bendersky2013-11-281-1/+4
* | Cosmetic fixesEli Bendersky2013-11-241-13/+8
* | Don't use deprecated function PyUnicode_GET_SIZE()Victor Stinner2013-11-131-1/+1
* | Issue #19356: Avoid using a C variabled named "_self", it's a reserved word i...Antoine Pitrou2013-10-231-2/+2
|\ \ | |/
| * Issue #19356: Avoid using a C variabled named "_self", it's a reserved word i...Antoine Pitrou2013-10-231-2/+2
* | - followup for issue #18997, make _clear_joined_ptr static.doko@ubuntu.com2013-09-181-1/+1
|\ \ | |/
| * - followup for issue #18997, make _clear_joined_ptr static.doko@ubuntu.com2013-09-181-1/+1
* | Merge for Issue #18997: Issue #18997: fix ElementTree crash with using pickle...Eli Bendersky2013-09-131-26/+24
|\ \ | |/
| * Issue #18997: fix ElementTree crash with using pickle and __getstate__.Eli Bendersky2013-09-131-26/+24
* | Use consistent style for else if / elseEli Bendersky2013-08-241-2/+5
* | Issue #15651: PEP 3121 refactoring for _elementtreeEli Bendersky2013-08-101-30/+89
* | Add missing check of PyDict_Update()'s return value in _elementtree.cChristian Heimes2013-07-201-1/+2
|\ \ | |/
| * Add missing check of PyDict_Update()'s return value in _elementtree.cChristian Heimes2013-07-201-1/+2