~ubuntu-branches/ubuntu/trusty/python3.3/trusty

« back to all changes in this revision

Viewing changes to Include/pyport.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-11-19 08:46:55 UTC
  • mfrom: (22.1.15 sid)
  • Revision ID: package-import@ubuntu.com-20131119084655-pueqfadzs5v1xf53
Tags: 3.3.3-1
* Python 3.3.3 release.
* Update to 20131119 from the 3.3 branch.
* Regenerate the patches.
* Update the symbols files.
* Fix test support when the running kernel doesn't handle port reuse.
* libpython3.3-minimal replaces libpython3.3-stdlib (<< 3.2.3-7).
  Closes: #725240.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
#endif
81
81
#endif /* HAVE_LONG_LONG */
82
82
 
83
 
/* a build with 30-bit digits for Python long integers needs an exact-width
 
83
/* a build with 30-bit digits for Python integers needs an exact-width
84
84
 * 32-bit unsigned integer type to store those digits.  (We could just use
85
85
 * type 'unsigned long', but that would be wasteful on a system where longs
86
86
 * are 64-bits.)  On Unix systems, the autoconf macro AC_TYPE_UINT32_T defines
98
98
#endif
99
99
 
100
100
/* Macros for a 64-bit unsigned integer type; used for type 'twodigits' in the
101
 
 * long integer implementation, when 30-bit digits are enabled.
 
101
 * integer implementation, when 30-bit digits are enabled.
102
102
 */
103
103
#ifdef uint64_t
104
104
#define HAVE_UINT64_T 1