[Python-checkins] cpython (3.4): Issue #21713: Fix typo in a comment. Found by Joseph Shen.

zach.ware python-checkins at python.org
Wed Jun 11 22:29:07 CEST 2014


http://hg.python.org/cpython/rev/61a00b7eac5d
changeset:   91140:61a00b7eac5d
branch:      3.4
parent:      91130:08fa17130fb3
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Wed Jun 11 15:27:04 2014 -0500
summary:
  Issue #21713: Fix typo in a comment.  Found by Joseph Shen.

files:
  PC/pyconfig.h |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/PC/pyconfig.h b/PC/pyconfig.h
--- a/PC/pyconfig.h
+++ b/PC/pyconfig.h
@@ -390,7 +390,7 @@
 #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 > 1300  */
 #endif  /* _MSC_VER */
 
 #endif

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list