diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-27 20:17:03 +0300 |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-27 20:17:03 +0300 |
| commit | 46e1ce214b5711e8dae63a1b5a0a7aafb371baf0 (patch) | |
| tree | 0230554f5bd4df8804946f5bb0634cefdbbbd2ae /Modules/_testcapimodule.c | |
| parent | 14e461d5b92000ec4e89182fa25ab0d5b5b31234 (diff) | |
| parent | 9594942716a8f9c557b85d31751753d89cd7cebf (diff) | |
| download | cpython-git-46e1ce214b5711e8dae63a1b5a0a7aafb371baf0.tar.gz | |
Issue #18783: Removed existing mentions of Python long type in docstrings,
error messages and comments.
Diffstat (limited to 'Modules/_testcapimodule.c')
| -rw-r--r-- | Modules/_testcapimodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 59d318240d..34b95c02a8 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -1649,7 +1649,7 @@ test_long_numbits(PyObject *self) {-3L, 2, -1}, {4L, 3, 1}, {-4L, 3, -1}, - {0x7fffL, 15, 1}, /* one Python long digit */ + {0x7fffL, 15, 1}, /* one Python int digit */ {-0x7fffL, 15, -1}, {0xffffL, 16, 1}, {-0xffffL, 16, -1}, |
