mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Fix sys.maxsize docs.
This commit is contained in:
parent
2d378ab5b2
commit
3377055486
1 changed files with 4 additions and 3 deletions
|
@ -367,10 +367,11 @@ always available.
|
|||
|
||||
.. data:: maxsize
|
||||
|
||||
An integer giving the size of ``Py_ssize_t``. It's usually 2**31-1 on a 32
|
||||
bit platform and 2**63-1 on a 64bit platform.
|
||||
An integer giving the maximum value a variable of type :ctype:`Py_ssize_t` can
|
||||
take. It's usually ``2**31 - 1`` on a 32-bit platform and ``2**63 - 1`` on a
|
||||
64-bit platform.
|
||||
|
||||
..versionadded:: 3.0
|
||||
.. versionadded:: 3.0
|
||||
|
||||
|
||||
.. data:: maxunicode
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue