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