index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
_elementtree.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...
Serhiy Storchaka
2017-12-15
1
-1/+1
*
bpo-31728: Prevent crashes in _elementtree due to unsafe cleanup of Element.t...
Oren Milman
2017-10-10
1
-34/+28
*
bpo-31499, xml.etree: Fix xmlparser_gc_clear() crash (#3641)
Victor Stinner
2017-09-18
1
-1/+5
*
bpo-31455: Fix an assertion failure in ElementTree.XMLParser(). (#3545)
scoder
2017-09-14
1
-2/+33
*
bpo-31428: Prevent raising a SystemError in case the memo arg of ElementTree....
Oren Milman
2017-09-12
1
-4/+5
*
bpo-31095: fix potential crash during GC (GH-2974)
INADA Naoki
2017-08-24
1
-1/+3
*
bpo-30892: Fix _elementtree module initialization (#2647)
Victor Stinner
2017-07-10
1
-0/+5
*
bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)
Serhiy Storchaka
2017-07-03
1
-1/+1
*
bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096)
Serhiy Storchaka
2017-04-19
1
-2/+2
*
Expand the PySlice_GetIndicesEx macro. (#1023)
Serhiy Storchaka
2017-04-08
1
-6/+6
*
bpo-29204: Emit warnings for already deprecated ElementTree features. (#773)
Serhiy Storchaka
2017-03-30
1
-2/+37
*
bpo-27863: Fixed multiple crashes in ElementTree. (#765)
Serhiy Storchaka
2017-03-30
1
-48/+52
*
Run Argument Clinic: METH_VARARGS=>METH_FASTCALL
Victor Stinner
2017-01-17
1
-1/+1
*
Merge from 3.6.
Serhiy Storchaka
2016-12-21
1
-0/+2
|
\
|
*
Merge from 3.5.
Serhiy Storchaka
2016-12-21
1
-0/+2
|
|
\
|
|
*
Issue #28871: Fixed a crash when deallocate deep ElementTree.
Serhiy Storchaka
2016-12-21
1
-0/+2
*
|
|
Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...
Serhiy Storchaka
2016-12-16
1
-1/+1
*
|
|
Use PyObject_CallFunctionObjArgs()
Victor Stinner
2016-12-09
1
-8/+14
*
|
|
Use _PyObject_CallMethodIdObjArgs() in _elementtree
Victor Stinner
2016-12-09
1
-9/+10
*
|
|
Issue #28858: Remove _PyObject_CallArg1() macro
Victor Stinner
2016-12-05
1
-5/+6
*
|
|
Backed out changeset b9c9691c72c5
Victor Stinner
2016-12-04
1
-1/+1
*
|
|
Replace PyObject_CallFunction() with fastcall
Victor Stinner
2016-12-01
1
-5/+5
*
|
|
Replace PyObject_CallFunctionObjArgs() with fastcall
Victor Stinner
2016-12-01
1
-1/+1
*
|
|
Added the const qualifier to char* variables that refer to readonly internal
Serhiy Storchaka
2016-11-20
1
-1/+1
|
/
/
*
|
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...
Serhiy Storchaka
2016-11-16
1
-3/+3
|
\
\
|
|
/
|
*
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...
Serhiy Storchaka
2016-11-16
1
-3/+3
*
|
Fix xml.etree.ElementTree.Element.getiterator()
Victor Stinner
2016-09-29
1
-1/+1
*
|
replace PY_SIZE_MAX with SIZE_MAX
Benjamin Peterson
2016-09-07
1
-1/+1
*
|
replace Py_(u)intptr_t with the c99 standard types
Benjamin Peterson
2016-09-06
1
-4/+4
*
|
Avoid calling functions with an empty string as format string
Victor Stinner
2016-09-06
1
-1/+1
*
|
Rename _PyObject_FastCall() to _PyObject_FastCallDict()
Victor Stinner
2016-08-22
1
-1/+1
*
|
_elementtree: deepcopy() now uses fast call
Victor Stinner
2016-08-19
1
-8/+4
*
|
Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag.
Serhiy Storchaka
2016-06-12
1
-3/+16
|
\
\
|
|
/
|
*
Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag.
Serhiy Storchaka
2016-06-12
1
-3/+16
*
|
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
Serhiy Storchaka
2016-04-10
1
-4/+4
|
\
\
|
|
/
|
*
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
Serhiy Storchaka
2016-04-10
1
-4/+4
*
|
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-13/+13
|
\
\
|
|
/
|
*
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-11/+11
*
|
Issue #20440: Cleaning up the code by using Py_SETREF.
Serhiy Storchaka
2016-01-05
1
-3/+1
*
|
Issue #20440: Cleaning up the code by using Py_SETREF and Py_CLEAR.
Serhiy Storchaka
2015-12-27
1
-5/+1
*
|
Issue #20440: More use of Py_SETREF.
Serhiy Storchaka
2015-12-27
1
-22/+12
|
\
\
|
|
/
|
*
Issue #20440: More use of Py_SETREF.
Serhiy Storchaka
2015-12-27
1
-24/+14
*
|
Issue #24103: Fixed possible use after free in ElementTree.XMLPullParser.
Serhiy Storchaka
2015-12-24
1
-19/+13
|
\
\
|
|
/
|
*
Issue #24103: Fixed possible use after free in ElementTree.XMLPullParser.
Serhiy Storchaka
2015-12-24
1
-19/+13
*
|
Issue #25869: Optimized deepcopying ElementTree; it is now 20 times faster.
Serhiy Storchaka
2015-12-21
1
-24/+54
*
|
Issue #25873: Optimized iterating ElementTree.
Serhiy Storchaka
2015-12-21
1
-158/+101
*
|
Issue #25902: Fixed various refcount issues in ElementTree iteration.
Serhiy Storchaka
2015-12-21
1
-32/+58
|
\
\
|
|
/
|
*
Issue #25902: Fixed various refcount issues in ElementTree iteration.
Serhiy Storchaka
2015-12-21
1
-32/+58
*
|
Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.
Serhiy Storchaka
2015-12-19
1
-1/+1
|
\
\
|
|
/
|
*
Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.
Serhiy Storchaka
2015-12-19
1
-1/+1
[next]