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 /Python/bltinmodule.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 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 11d9ee425f..3f270b4363 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -1529,7 +1529,7 @@ PyDoc_STRVAR(pow_doc, "pow(x, y[, z]) -> number\n\ \n\ With two arguments, equivalent to x**y. With three arguments,\n\ -equivalent to (x**y) % z, but may be more efficient (e.g. for longs)."); +equivalent to (x**y) % z, but may be more efficient (e.g. for ints)."); |