commit | c235af47f17d2dab282237a7e49445d234f7df7e | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Thu Sep 08 09:25:03 2016 -0700 |
committer | Benjamin Peterson <benjamin@python.org> | Thu Sep 08 09:25:03 2016 -0700 |
tree | 3b7ad8e33e148614fd8791e93a29374cae66de0b | |
parent | beb0f1d425458ef9cb18a4eb2b4ffe87aeb2662b [diff] |
fix a PY_LONG_LONG straggler
diff --git a/Modules/_ctypes/ctypes.h b/Modules/_ctypes/ctypes.h index b71f139..5d3b966 100644 --- 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; };