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 | 8ccecb68f7c8ca1e6e4cdde3a3a8114c737d43ae (patch) | |
tree | 056bc3516fb8e7aae1103c6ca503b9869e2492ac /Python/compile.c | |
parent | c36bfc1c99c6dffff8cb89c723001902d721ff97 (diff) | |
parent | 9927bb7a2e04addea58d3df36ca4ea47113b0192 (diff) | |
download | cpython-8ccecb68f7c8ca1e6e4cdde3a3a8114c737d43ae.tar.gz |
Issue #18783: Removed existing mentions of Python long type in docstrings,
error messages and comments.
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index 71a0930a8e..160c6fce01 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -1054,7 +1054,7 @@ compiler_add_o(struct compiler *c, PyObject *dict, PyObject *o) Py_ssize_t arg; double d; - /* necessary to make sure types aren't coerced (e.g., int and long) */ + /* necessary to make sure types aren't coerced (e.g., float and complex) */ /* _and_ to distinguish 0.0 from -0.0 e.g. on IEEE platforms */ if (PyFloat_Check(o)) { d = PyFloat_AS_DOUBLE(o); |