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 josephsmeng
Recipients josephsmeng
Date 2014-06-11.01:37:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1402450635.04.0.57326220333.issue21713@psf.upfronthosting.co.za>
In-reply-to
Content
in the source file PC/pyconfig.h at line 393 there is a mistype

this is the origin file
==========================================================================
/* VC 7.1 has them and VC 6.0 does not.  VC 6.0 has a version number of 1200.
   Microsoft eMbedded Visual C++ 4.0 has a version number of 1201 and doesn't
   define these.
   If some compiler does not provide them, modify the #if appropriately. */
#if defined(_MSC_VER)
#if _MSC_VER > 1300
#define HAVE_UINTPTR_T 1
#define HAVE_INTPTR_T 1
#else
/* VC6, VS 2002 and eVC4 don't support the C99 LL suffix for 64-bit integer literals */
#define Py_LL(x) x##I64
#endif  /* _MSC_VER > 1200  */
#endif  /* _MSC_VER */

#endif

==========================================================================
>>> #endif /* _MSC_VER > 1200 */
should be
<<< #endif /* _MSC_VER > 1300 */
or left empty
History
Date User Action Args
2014-06-11 01:37:15josephsmengsetrecipients: + josephsmeng
2014-06-11 01:37:15josephsmengsetmessageid: <1402450635.04.0.57326220333.issue21713@psf.upfronthosting.co.za>
2014-06-11 01:37:14josephsmenglinkissue21713 messages
2014-06-11 01:37:14josephsmengcreate