[Python-checkins] cpython: fix a PY_LONG_LONG straggler

benjamin.peterson python-checkins at python.org
Thu Sep 8 12:30:31 EDT 2016


https://hg.python.org/cpython/rev/7e3eaa25552b
changeset:   103310:7e3eaa25552b
user:        Benjamin Peterson <benjamin at python.org>
date:        Thu Sep 08 09:25:03 2016 -0700
summary:
  fix a PY_LONG_LONG straggler

files:
  Modules/_ctypes/ctypes.h |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/_ctypes/ctypes.h b/Modules/_ctypes/ctypes.h
--- a/Modules/_ctypes/ctypes.h
+++ b/Modules/_ctypes/ctypes.h
@@ -31,7 +31,7 @@
                 long l;
                 float f;
                 double d;
-                PY_LONG_LONG ll;
+                long long ll;
                 long double D;
 };
 

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


More information about the Python-checkins mailing list