summaryrefslogtreecommitdiffstats
path: root/Modules/_elementtree.c
Commit message (Expand)AuthorAgeFilesLines
* 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-47/+97
* 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
* | (3.3->default): #18480: Add missing PyType_Ready call to _elementtree extensionRonald Oussoren2013-07-191-5/+9
|\ \ | |/
| * #18480: Add missing PyType_Ready call to _elementtree extensionRonald Oussoren2013-07-191-5/+9
* | Issue #18408: Fix _elementtree.c, don't call Python function from an expatVictor Stinner2013-07-181-0/+28
* | Issue #18408: Fix constructors of _elementtree.cVictor Stinner2013-07-121-12/+15
* | Issue #18408: Fix create_extra() of _elementtree.c, raise MemoryError on memoryVictor Stinner2013-07-121-1/+3
* | Issue #18408: Different fixes in _elementtree.c to handle correctly MemoryErrorVictor Stinner2013-07-111-8/+14
* | Cleanup _elementtree.cVictor Stinner2013-07-111-7/+6
* | Issue #18408: _elementtree.c now handles create_extra() failureVictor Stinner2013-07-111-12/+24
* | Issue #13612: handle unknown encodings without a buffer overflow.Eli Bendersky2013-05-251-42/+1
|\ \ | |/
| * Issue #13612: handle unknown encodings without a buffer overflow.Eli Bendersky2013-05-251-42/+1
* | Issue #16986: ElementTree now correctly parses a string input not only whenSerhiy Storchaka2013-05-221-9/+30
|\ \ | |/
| * Issue #16986: ElementTree now correctly parses a string input not only whenSerhiy Storchaka2013-05-221-9/+30
* | Get rid of ugly code duplication for ElementTree.parse when the acceleratorEli Bendersky2013-05-201-4/+3
* | Issue #17989: fix typo in error messageEli Bendersky2013-05-201-1/+1
|\ \ | |/
| * Issue #17989: fix typo in error messageEli Bendersky2013-05-191-1/+1
* | _elementtree.XMLParser._setevents should support any sequence, not just tuplesEli Bendersky2013-05-191-46/+42
* | Issue #17901: fix TreeBuilder construction for an explicit element_factory=NoneEli Bendersky2013-05-181-1/+1
|\ \ | |/
| * Issue #17901: fix TreeBuilder construction for an explicit element_factory=NoneEli Bendersky2013-05-181-1/+1
* | Issue #17989: element_setattro returned incorrect error value.Eli Bendersky2013-05-181-8/+8
|\ \ | |/
| * Issue #17989: element_setattro returned incorrect error value.Eli Bendersky2013-05-181-8/+8
* | Revert c9674421d78e, leaving an additional commentEli Bendersky2013-04-241-5/+10
* | Simplify the code of get_attrib_from_keywords somewhat.Eli Bendersky2013-04-221-9/+5
* | Issue #17736: fix misleading comment in _elementtree.cEli Bendersky2013-04-221-1/+3
|\ \ | |/
| * Issue #17736: fix misleading comment in _elementtree.cEli Bendersky2013-04-221-1/+3
* | Remove useless #define and #ifdefsEli Bendersky2013-04-201-11/+0
* | Make license notices more consistent and remove old changelog.Eli Bendersky2013-04-201-43/+5
|/
* Issue #16922: fixed findtext() to return empty Unicode string instead of empt...Eli Bendersky2013-01-131-1/+1
* Clean trailing whitespace in _elementtree.cEli Bendersky2013-01-131-4/+4
* Issue #16076: check for return value of PyTuple_New for args (followingEli Bendersky2013-01-121-8/+11
* Issue #16076: fix refleak in pickling of Element.Eli Bendersky2013-01-121-11/+5
* Issue #16913: Fix Element.itertext()'s handling of text with XML entities.Eli Bendersky2013-01-101-3/+14
* Issue #16076: make _elementtree.Element pickle-able in a way that is compatibleEli Bendersky2013-01-101-3/+177
* The get() and iter() are now able to accept keyword arguments.Eli Bendersky2013-01-051-8/+13