diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-17 08:14:30 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-17 08:14:30 (GMT) |
commit | 483405bcca9f371bc6910dda7f9b5ba74395682c (patch) | |
tree | 3afeb1990bf2ab9d24fdea4409317a08a97af7eb /Lib | |
parent | 77c041ba64f87ac021c2a7a9314d9a3a1145057f (diff) | |
download | cpython-483405bcca9f371bc6910dda7f9b5ba74395682c.zip cpython-483405bcca9f371bc6910dda7f9b5ba74395682c.tar.gz cpython-483405bcca9f371bc6910dda7f9b5ba74395682c.tar.bz2 |
Issue #22883: Got rid of outdated references to PyInt and PyString in comments.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_getargs2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_getargs2.py b/Lib/test/test_getargs2.py index cf1279d..71472cd 100644 --- a/Lib/test/test_getargs2.py +++ b/Lib/test/test_getargs2.py @@ -34,8 +34,8 @@ except ImportError: # > ** Changed from previous "range-and-a-half" to "none"; the # > range-and-a-half checking wasn't particularly useful. # -# Plus a C API or two, e.g. PyInt_AsLongMask() -> -# unsigned long and PyInt_AsLongLongMask() -> unsigned +# Plus a C API or two, e.g. PyLong_AsUnsignedLongMask() -> +# unsigned long and PyLong_AsUnsignedLongLongMask() -> unsigned # long long (if that exists). LARGE = 0x7FFFFFFF |