mirror of
https://github.com/python/cpython.git
synced 2025-08-16 06:40:56 +00:00
Merge 3.6
This commit is contained in:
commit
701fb4ba9a
2 changed files with 4 additions and 1 deletions
|
@ -52,6 +52,9 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #28314: Fix function declaration (C flags) for the getiterator() method
|
||||||
|
of xml.etree.ElementTree.Element.
|
||||||
|
|
||||||
- Issue #28148: Stop using localtime() and gmtime() in the time
|
- Issue #28148: Stop using localtime() and gmtime() in the time
|
||||||
module.
|
module.
|
||||||
|
|
||||||
|
|
|
@ -3702,7 +3702,7 @@ static PyMethodDef element_methods[] = {
|
||||||
_ELEMENTTREE_ELEMENT_ITERTEXT_METHODDEF
|
_ELEMENTTREE_ELEMENT_ITERTEXT_METHODDEF
|
||||||
_ELEMENTTREE_ELEMENT_ITERFIND_METHODDEF
|
_ELEMENTTREE_ELEMENT_ITERFIND_METHODDEF
|
||||||
|
|
||||||
{"getiterator", (PyCFunction)_elementtree_Element_iter, METH_VARARGS|METH_KEYWORDS, _elementtree_Element_iter__doc__},
|
{"getiterator", (PyCFunction)_elementtree_Element_iter, METH_FASTCALL, _elementtree_Element_iter__doc__},
|
||||||
_ELEMENTTREE_ELEMENT_GETCHILDREN_METHODDEF
|
_ELEMENTTREE_ELEMENT_GETCHILDREN_METHODDEF
|
||||||
|
|
||||||
_ELEMENTTREE_ELEMENT_ITEMS_METHODDEF
|
_ELEMENTTREE_ELEMENT_ITEMS_METHODDEF
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue