This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author doko
Recipients doko, theller
Date 2007-10-25.07:09:57
SpamBayes Score 0.021840498
Marked as misclassified No
Message-id <1193296197.5.0.247926194612.issue1324@psf.upfronthosting.co.za>
In-reply-to
Content
Index: Modules/_ctypes/cfield.c
===================================================================
--- Modules/_ctypes/cfield.c    (revision 58651)
+++ Modules/_ctypes/cfield.c    (working copy)
@@ -1753,6 +1753,9 @@
 
 ffi_type ffi_type_float = { sizeof(float), FLOAT_ALIGN, FFI_TYPE_FLOAT };
 ffi_type ffi_type_double = { sizeof(double), DOUBLE_ALIGN,
FFI_TYPE_DOUBLE };
+#ifdef ffi_type_longdouble
+#undef ffi_type_longdouble
+#endif
 ffi_type ffi_type_longdouble = { sizeof(long double), LONGDOUBLE_ALIGN,
                                 FFI_TYPE_LONGDOUBLE };
History
Date User Action Args
2007-10-25 07:09:57dokosetspambayes_score: 0.0218405 -> 0.021840498
recipients: + doko, theller
2007-10-25 07:09:57dokosetspambayes_score: 0.0218405 -> 0.0218405
messageid: <1193296197.5.0.247926194612.issue1324@psf.upfronthosting.co.za>
2007-10-25 07:09:57dokolinkissue1324 messages
2007-10-25 07:09:57dokocreate