[Python-checkins] peps: PEP 509: typo, PY_UINT64_T (unsigned), not PY_INT64_T (signed)

victor.stinner python-checkins at python.org
Mon Jan 11 12:32:55 EST 2016


https://hg.python.org/peps/rev/63539f1be6c8
changeset:   6165:63539f1be6c8
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Mon Jan 11 18:32:22 2016 +0100
summary:
  PEP 509: typo, PY_UINT64_T (unsigned), not PY_INT64_T (signed)

files:
  pep-0509.txt |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/pep-0509.txt b/pep-0509.txt
--- a/pep-0509.txt
+++ b/pep-0509.txt
@@ -221,7 +221,7 @@
 Integer overflow
 ================
 
-The implementation uses the C unsigned integer type ``PY_INT64_T`` to
+The implementation uses the C unsigned integer type ``PY_UINT64_T`` to
 store the version, a 64 bits unsigned integer. The C code uses
 ``version++``. On integer overflow, the version is wrapped to ``0`` (and
 then continue to be incremented) according to the C standard.

-- 
Repository URL: https://hg.python.org/peps


More information about the Python-checkins mailing list