1. 17c50cd Issue 10052: fix failed uint32_t / uint64_t / int32_t / int64_t detection on some platforms. by Mark Dickinson · 12 years ago
  2. e78f12f Backport 9dd4638de73b. by Stefan Krah · 12 years ago
  3. 9c0baf7 Issue #13889: On MSVC builds, set FPU control word at runtime for all string <-> float conversions. Patch by Samuel Iseli and Stefan Krah. by Mark Dickinson · 12 years ago
  4. 93db23e Merged revisions 84810 via svnmerge from by Daniel Stutzbach · 14 years ago
  5. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  6. 37805e5 Fix for issue #7072 by Ronald Oussoren · 14 years ago
  7. a55af9a - Issue #7658: Ensure that the new pythonw executable works on OSX 10.4 by Ronald Oussoren · 15 years ago
  8. 31f0cfe Include ieeefp.h (when available) in pyport.h instead of individually in by Mark Dickinson · 15 years ago
  9. 845688d Enable short float repr! by Mark Dickinson · 15 years ago
  10. 82864d1 Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString, by Mark Dickinson · 15 years ago
  11. f325407 Issue #7117: temporarily disable the short float repr while the by Mark Dickinson · 15 years ago
  12. 1d6e2e1 Issue #7117 (backport py3k float repr) continued: by Mark Dickinson · 15 years ago
  13. 2f865b9 Issue #6347: Add inttypes.h to the pyport.h #includes; fixes a build by Mark Dickinson · 15 years ago
  14. f35f804 Rewrite Py_ARITHMETIC_RIGHT_SHIFT so that it's valid for all signed by Mark Dickinson · 15 years ago
  15. efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 15 years ago
  16. d89f5b2 Fix issue 4884, preventing a crash in the socket code when python is compiled by Jeffrey Yasskin · 16 years ago
  17. 9d53457 Merge in release25-maint r60793: by Gregory P. Smith · 16 years ago
  18. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  19. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  20. 8c255e4 Patch #1722225: Support QNX 6. by Martin v. Löwis · 16 years ago
  21. 6f34109 I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math. by Christian Heimes · 16 years ago
  22. 951cc0f Fixed bug #1983: Return from fork() is pid_t, not int by Christian Heimes · 17 years ago
  23. 690c912 Fixed a missing (X) in define by Christian Heimes · 17 years ago
  24. 4872351 Fixed a wrong assumption in configure.in and Include/pyport.h. The is finite function is not called isfinite() but finite(). Sorry, my fault. :) by Christian Heimes · 17 years ago
  25. 0a83d79 Some build bots don't compile mathmodule. There is an issue with the long definition of pi and euler by Christian Heimes · 17 years ago
  26. 0a8143f Applied patch #1635: Float patch for inf and nan on Windows (and other platforms). by Christian Heimes · 17 years ago
  27. 2a71a47 Provide PY_LLONG_MAX on all systems having long long. Will backport to 2.5. by Martin v. Löwis · 17 years ago
  28. 9201e7f Provide LLONG_MAX for S390. by Martin v. Löwis · 17 years ago
  29. 6371cd8 Patch #1733960: Allow T_LONGLONG to accept ints. Will backport to 2.5. by Martin v. Löwis · 17 years ago
  30. aac1316 Add check for the PyArg_ParseTuple format, and declare it if it is supported. by Martin v. Löwis · 18 years ago
  31. 40e9aed Guard uintptr_t test with HAVE_STDINT_H, test for stdint.h. Will backport. by Martin v. Löwis · 18 years ago
  32. 02743ca Mostly revert this file to the same version as before. Only force setting by Neal Norwitz · 18 years ago
  33. 4a8fbdb Fix %zd string formatting on Mac OS X so it prints negative numbers. by Neal Norwitz · 18 years ago
  34. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 18 years ago
  35. 80f8e80 needforspeed: added Py_MEMCPY macro (currently tuned for Visual C only), by Fredrik Lundh · 18 years ago
  36. 7a83089 needforspeed: backed out the Py_LOCAL-isation of ceval; the massive in- by Fredrik Lundh · 18 years ago
  37. 57640f5 needforspeed: added PY_LOCAL_AGGRESSIVE macro to enable "aggressive" by Fredrik Lundh · 18 years ago
  38. 95e2a91 use Py_LOCAL also for string and unicode objects by Fredrik Lundh · 18 years ago
  39. b8b3c8e needforspeed: added Py_LOCAL macro, based on the LOCAL macro used by Fredrik Lundh · 18 years ago
  40. 44aa9f71 Fix incorrect documentation for the Py_IS_FINITE(X) macro. by Kristján Valur Jónsson · 18 years ago
  41. cc1ecf4 Fix another typo by Andrew M. Kuchling · 18 years ago
  42. 1d2576d Fix comment typos by Andrew M. Kuchling · 18 years ago
  43. f94323f Added a new macro, Py_IS_FINITE(X). On windows there is an intrinsic for this and it is more efficient than to use !Py_IS_INFINITE(X) && !Py_IS_NAN(X). No change on other platforms by Kristján Valur Jónsson · 18 years ago
  44. a43190b Patch #1492356: Port to Windows CE (patch set 1). by Martin v. Löwis · 18 years ago
  45. 3b1c01d Fixed error in comment for new PY_SSIZE_T_MIN. by Tim Peters · 18 years ago
  46. c48c8db Add PY_SSIZE_T_MIN, as suggested by Ralf W. Grosse-Kunstleve. by Martin v. Löwis · 18 years ago
  47. c7403ed Add a clause to the PY_FORMAT_SIZE_T to stop warnings on 32 bit intel by Anthony Baxter · 18 years ago
  48. f303261 Remove false information from the comment and reformat it like other by Hye-Shik Chang · 18 years ago
  49. 3dd8be4 Get Py_DEPRECATED to work with gcc 4.x too by Neal Norwitz · 18 years ago
  50. ae1d0c9 Introduced symbol PY_FORMAT_SIZE_T. See the new comments by Tim Peters · 18 years ago
  51. 2d65b55 Fix intptr_t fallback for Py_ssize_t. by Martin v. Löwis · 18 years ago
  52. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  53. 358d938 Remove INT_MIN that came from the AST merge. by Neal Norwitz · 19 years ago
  54. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  55. 539c662 - Changes donated by Elemental Security to make it work on HP-UX 11 on by Guido van Rossum · 19 years ago
  56. 862f059 Introduced a Py_IS_NAN macro, which probably works on the major platforms by Tim Peters · 20 years ago
  57. b5047fd Add a workaround for a problem that UTF-8 strings can be corrupted by Hye-Shik Chang · 20 years ago
  58. 9ba301e Moved SunPro warning suppression into pyport.h and out of individual by Nicholas Bastin · 20 years ago
  59. 77d9a3e Patch #871657: Set EDOM for `nan' return values on FreeBSD and OpenBSD. by Hye-Shik Chang · 20 years ago
  60. 7befb99 remove support for missing ANSI C header files (limits.h, stddef.h, etc). by Skip Montanaro · 21 years ago
  61. ce59c04 Remove support for SunOS 4. by Skip Montanaro · 21 years ago
  62. 83dd43f workaround for OpenBSD compiler bug w.r.t. handling of overflows. by Anthony Baxter · 21 years ago
  63. 6bc06ec Bug #794140: cygwin builds do not embed by Jason Tishler · 21 years ago
  64. 3076559 This patch enables the building of Cygwin Python with a static core by Jason Tishler · 21 years ago
  65. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 21 years ago
  66. b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 21 years ago
  67. f163d10 Make comments agree with code (I think). by Michael W. Hudson · 22 years ago
  68. fb8595d Patch #661760: Cygwin auto-import module patch by Jason Tishler · 22 years ago
  69. 4643bd9 Apparently FreeBSD enables some HW floating-point exceptions by default. by Tim Peters · 22 years ago
  70. 93344ab Update/correct comment by Neal Norwitz · 22 years ago
  71. 8029264 Provide mechanism to deprecate functions, types, and struct members. by Neal Norwitz · 22 years ago
  72. 96aa0ac Use Py_GCC_ATTRIBUTE instead of __attribute__. Compilers other than GCC by Neil Schemenauer · 22 years ago
  73. a290527 Excise DL_IMPORT/EXPORT from object.h, and related files. This patch by Mark Hammond · 22 years ago
  74. 8235ea1 Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT. by Mark Hammond · 22 years ago
  75. 1de41bf Stop trying to cater to platforms with a broken HUGE_VAL definition. It by Tim Peters · 22 years ago
  76. bc48826 Patch #555929: Cygwin AH_BOTTOM cleanup patch (*** version 2 ***) by Jason Tishler · 22 years ago
  77. 1e1fcef Back out #555929 by Martin v. Löwis · 22 years ago
  78. eadb6bb Patch #555929: Cygwin AH_BOTTOM cleanup patch by Jason Tishler · 22 years ago
  79. af3e8de First stab at rationalizing the PyMem_ API. Mixing PyObject_xyz with by Tim Peters · 22 years ago
  80. 8ab04b4 Got rid of ifdefs for long-obsolete GUSI versions. by Jack Jansen · 22 years ago
  81. dc5a508 SF bug 525705: [2.2] underflow raise OverflowException. by Tim Peters · 22 years ago
  82. a5d78cc Whether platform malloc(0) returns NULL has nothing to do with whether by Tim Peters · 22 years ago
  83. 5e090fc OS/2 EMX port changes (Include part of patch #450267): by Andrew MacIntyre · 22 years ago
  84. 4892f24 Got rid of a few more NeXT ifdefs. The last, I think. by Jack Jansen · 23 years ago
  85. 10a3bb5 SF bug #495548: troublesome #define in pyport.h by Tim Peters · 23 years ago
  86. bd67d6f SF patch #475657 (Dietmar Schwertberger) by Guido van Rossum · 23 years ago
  87. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  88. 1569108 Hide GCC attributes fom compilers that don't support them. by Neil Schemenauer · 23 years ago
  89. 092a7a8 SF patch [#466353] Py_HUGE_VAL on BeOS for Intel. by Tim Peters · 23 years ago
  90. a40c793 Rework the way we try to check for libm overflow, given that C99 no longer by Tim Peters · 23 years ago
  91. d893fd6 Repair indentation. by Tim Peters · 23 years ago
  92. 57f282a Try to recover from that glibc's ldexp apparently doesn't set errno on by Tim Peters · 23 years ago
  93. 79248aa SF bug [#456252] Python should never stomp on [u]intptr_t. by Tim Peters · 23 years ago
  94. 8a267b6 Remove 6-year old hack to worm around a bug in "NextSpec/Sparc 3.3 by Tim Peters · 23 years ago
  95. f9836ba Put conditional S_ISDIR definition(s) into pyport.h. by Martin v. Löwis · 23 years ago
  96. f249add Got rid of (hopefully) the last 68k-mac related ifdefs. by Jack Jansen · 23 years ago
  97. 76f373d Repair more now-obsolete references to config.h. by Tim Peters · 23 years ago
  98. 4f1cd8b Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. by Martin v. Löwis · 23 years ago
  99. 58e0a8c SF patch #418147 Fixes to allow compiling w/ Borland, from Stephen Hansen. by Tim Peters · 23 years ago
  100. 76b642d Remove include-file-dependant half-prototype of clnt_create(). by Thomas Wouters · 24 years ago