[Python-checkins] r73662 - in python/branches/release31-maint: Include/longintrepr.h Include/pymath.h

mark.dickinson python-checkins at python.org
Mon Jun 29 00:52:18 CEST 2009


Author: mark.dickinson
Date: Mon Jun 29 00:52:18 2009
New Revision: 73662

Log:
Merged revisions 73661 via svnmerge from 
svn+ssh://pythondev@www.python.org/python/branches/py3k

................
  r73661 | mark.dickinson | 2009-06-28 23:40:48 +0100 (Sun, 28 Jun 2009) | 9 lines
  
  Merged revisions 73660 via svnmerge from 
  svn+ssh://pythondev@svn.python.org/python/trunk
  
  ........
    r73660 | mark.dickinson | 2009-06-28 23:37:13 +0100 (Sun, 28 Jun 2009) | 1 line
    
    Remove unused stdint.h includes
  ........
................


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Include/longintrepr.h
   python/branches/release31-maint/Include/pymath.h

Modified: python/branches/release31-maint/Include/longintrepr.h
==============================================================================
--- python/branches/release31-maint/Include/longintrepr.h	(original)
+++ python/branches/release31-maint/Include/longintrepr.h	Mon Jun 29 00:52:18 2009
@@ -40,10 +40,6 @@
   platform.
 */
 
-#if HAVE_STDINT_H
-#include <stdint.h>
-#endif
-
 #if PYLONG_BITS_IN_DIGIT == 30
 #if !(defined HAVE_UINT64_T && defined HAVE_UINT32_T &&          \
       defined HAVE_INT64_T && defined HAVE_INT32_T)

Modified: python/branches/release31-maint/Include/pymath.h
==============================================================================
--- python/branches/release31-maint/Include/pymath.h	(original)
+++ python/branches/release31-maint/Include/pymath.h	Mon Jun 29 00:52:18 2009
@@ -3,10 +3,6 @@
 
 #include "pyconfig.h" /* include for defines */
 
-#ifdef HAVE_STDINT_H
-#include <stdint.h>
-#endif
-
 /**************************************************************************
 Symbols and macros to supply platform-independent interfaces to mathematical
 functions and constants


More information about the Python-checkins mailing list