From: Benjamin Peterson Date: Thu, 8 Sep 2016 16:25:03 +0000 (-0700) Subject: fix a PY_LONG_LONG straggler X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c235af47f17d2dab282237a7e49445d234f7df7e;p=python fix a PY_LONG_LONG straggler --- diff --git a/Modules/_ctypes/ctypes.h b/Modules/_ctypes/ctypes.h index b71f139f8b..5d3b966338 100644 --- a/Modules/_ctypes/ctypes.h +++ b/Modules/_ctypes/ctypes.h @@ -31,7 +31,7 @@ union value { long l; float f; double d; - PY_LONG_LONG ll; + long long ll; long double D; };