mirror of
https://github.com/python/cpython.git
synced 2025-10-07 07:31:46 +00:00
Issue #18783: Removed existing mentions of Python long type in docstrings,
error messages and comments.
This commit is contained in:
parent
4af4d273bd
commit
9594942716
40 changed files with 137 additions and 150 deletions
|
@ -146,7 +146,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. */
|
||||
|
||||
|
@ -432,7 +432,7 @@ w_object(PyObject *v, WFILE *p)
|
|||
p->depth--;
|
||||
}
|
||||
|
||||
/* 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