]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Backed out changeset 8b6be1341770
authorBenjamin Peterson <benjamin@python.org>
Tue, 6 Sep 2016 00:22:09 +0000 (17:22 -0700)
committerBenjamin Peterson <benjamin@python.org>
Tue, 6 Sep 2016 00:22:09 +0000 (17:22 -0700)
Modules/_ctypes/ctypes.h

index d80ea82cee8cc79ec2a2f56eaba514c52bfabd5d..0d3f7241ca8f3e1c175cb2c46129740482df48ab 100644 (file)
@@ -34,6 +34,7 @@ union value {
 #ifdef HAVE_LONG_LONG
                 PY_LONG_LONG ll;
 #endif
+                long double D;
 };
 
 /*
@@ -305,6 +306,7 @@ struct tagPyCArgObject {
 #ifdef HAVE_LONG_LONG
         PY_LONG_LONG q;
 #endif
+        long double D;
         double d;
         float f;
         void *p;