mirror of
https://github.com/python/cpython.git
synced 2025-10-21 22:22:48 +00:00
Issue #18783: Removed existing mentions of Python long type in docstrings,
error messages and comments.
This commit is contained in:
commit
46e1ce214b
40 changed files with 140 additions and 150 deletions
|
@ -148,7 +148,7 @@ w_pstring(const char *s, Py_ssize_t n, WFILE *p)
|
|||
w_string(s, n, p);
|
||||
}
|
||||
|
||||
/* We assume that Python longs are stored internally in base some power of
|
||||
/* We assume that Python ints are stored internally in base some power of
|
||||
2**15; for the sake of portability we'll always read and write them in base
|
||||
exactly 2**15. */
|
||||
|
||||
|
@ -505,7 +505,7 @@ w_complex_object(PyObject *v, char flag, WFILE *p)
|
|||
}
|
||||
}
|
||||
|
||||
/* version currently has no effect for writing longs. */
|
||||
/* version currently has no effect for writing ints. */
|
||||
void
|
||||
PyMarshal_WriteLongToFile(long x, FILE *fp, int version)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue