diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-05-28 10:33:45 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-28 10:33:45 +0300 |
commit | 5f4b229df7812f1788287095eb6b138bb21876a4 (patch) | |
tree | f00cef402d0467010a34e9e617d89ccebebe6d1a /Tools/clinic | |
parent | Improve IO tutorial's "Old string formatting" section (GH-16251) (diff) | |
download | cpython-5f4b229df7812f1788287095eb6b138bb21876a4.tar.gz cpython-5f4b229df7812f1788287095eb6b138bb21876a4.tar.bz2 cpython-5f4b229df7812f1788287095eb6b138bb21876a4.zip |
bpo-40792: Make the result of PyNumber_Index() always having exact type int. (GH-20443)
Previously, the result could have been an instance of a subclass of int.
Also revert bpo-26202 and make attributes start, stop and step of the range
object having exact type int.
Add private function _PyNumber_Index() which preserves the old behavior
of PyNumber_Index() for performance to use it in the conversion functions
like PyLong_AsLong().
Diffstat (limited to 'Tools/clinic')
-rwxr-xr-x | Tools/clinic/clinic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/clinic/clinic.py b/Tools/clinic/clinic.py index 0f40e0679f0..b1bf7826ebf 100755 --- a/Tools/clinic/clinic.py +++ b/Tools/clinic/clinic.py @@ -3062,7 +3062,7 @@ class Py_ssize_t_converter(CConverter): return """ {{{{ Py_ssize_t ival = -1; - PyObject *iobj = PyNumber_Index({argname}); + PyObject *iobj = _PyNumber_Index({argname}); if (iobj != NULL) {{{{ ival = PyLong_AsSsize_t(iobj); Py_DECREF(iobj); |