1. d36cf5f bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781) by Victor Stinner · 4 years, 2 months ago
  2. 033d10b bpo-40244: Remove XLC's support from the noreturn flag (GH-20588) by Batuhan Taskaya · 4 years, 2 months ago
  3. 1ae035b bpo-40302: Add pycore_byteswap.h header file (GH-19552) by Victor Stinner · 4 years, 4 months ago
  4. 0003c2d bpo-40096: Support __attribute__((__noreturn__)) on xlc (GH-19204) by Batuhan Taşkaya · 4 years, 4 months ago
  5. 0b60f64 bpo-11410: Standardize and use symbol visibility attributes across POSIX and Windows. (GH-16347) by Vinay Sajip · 4 years, 10 months ago
  6. 4346bad closes bpo-38253: Fix typo of Py_SET_ERANGE_IF_OVERFLOW in pyport.h. (GH-16230) by Hai Shi · 4 years, 10 months ago
  7. d765d81 bpo-37781: use "z" for PY_FORMAT_SIZE_T (GH-15156) by Inada Naoki · 5 years ago
  8. 3c8724f bpo-33407: Implement Py_DEPRECATED() on MSVC (GH-8980) by Zackery Spytz · 5 years ago
  9. c664b34 bpo-36475: Make PyThread_exit_thread with _Py_NO_RETURN (GH-13068) by Victor Stinner · 5 years ago
  10. e251095 bpo-36775: Add _Py_FORCE_UTF8_FS_ENCODING macro (GH-13056) by Victor Stinner · 5 years ago
  11. 6d13e5b bpo-36722: Don't define ALT_SOABI for Py_TRACE_REFS build (GH-12973) by Victor Stinner · 5 years ago
  12. 11efd79 bpo-36071 Add support for Windows ARM32 in ctypes/libffi (GH-12059) by Paul Monson · 5 years ago
  13. 5c75f37 bpo-36635: Change pyport.h for Py_BUILD_CORE_MODULE define (GH-12853) by Victor Stinner · 5 years ago
  14. 7a23680 bpo-35758: Fix building on ARM + MSVC (gh-11531) by Minmin Gong · 6 years ago
  15. 542497a bpo-35059: Remove Py_STATIC_INLINE() macro (GH-10216) by Victor Stinner · 6 years ago
  16. 18618e65 bpo-35059: Add Py_STATIC_INLINE() macro (GH-10093) by Victor Stinner · 6 years ago
  17. c573499 bpo-33720: Refactor marshalling/unmarshalling floats. (GH-8071) by Serhiy Storchaka · 6 years ago
  18. 13ff245 bpo-32593: Drop FreeBSD 9 and older support (#5232) by Victor Stinner · 7 years ago
  19. c06c22e bpo-29040: Support building Android with Unified Headers (GH-4492) by xdegaye · 7 years ago
  20. 850a18e bpo-30768: Recompute timeout on interrupted lock (GH-4103) by Victor Stinner · 7 years ago
  21. 288d1da remove support for BSD/OS (closes bpo-31624) (#3812) by Benjamin Peterson · 7 years ago
  22. fc1bf87 bpo-30860: Move windows.h include out of internal/*.h. (#3458) by Eric Snow · 7 years ago
  23. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  24. 791dc83 remove configure test for inline keyword (#1231) by Benjamin Peterson · 7 years ago
  25. f7eda38 Fix the only non-C90 comment to be C90 compatible. (#566) by n.d. parker · 7 years ago
  26. 677ab99 Fixed a typo in the comment in Include/pyport.h (#425) by Joseph Shen · 7 years ago
  27. b915bc3 Disable _PyStack_AsTuple() inlining by Victor Stinner · 8 years ago
  28. af6fdf3 Merge 3.6 by Victor Stinner · 8 years ago
  29. a251fb0 Issue #27961: Define HAVE_LONG_LONG as 1. by Victor Stinner · 8 years ago
  30. 4ebcdac merge 3.6 (#28898) by Benjamin Peterson · 8 years ago
  31. 0d5742d guard HAVE_LONG_LONG definition to prevent redefinition (#28898) by Benjamin Peterson · 8 years ago
  32. c7a8f67 Issue #28618: Mark dict lookup functions as hot by Victor Stinner · 8 years ago
  33. c6944e7 Issue #28618: Make hot functions using __attribute__((hot)) by Victor Stinner · 8 years ago
  34. 0c21214 replace usage of Py_VA_COPY with the (C99) standard va_copy by Benjamin Peterson · 8 years ago
  35. e2e792d merge 3.5 (#28184) by Benjamin Peterson · 8 years ago
  36. 918aa89 remove trailing whitespace by Benjamin Peterson · 8 years ago
  37. ac965ca stop using Py_LL and Py_ULL by Benjamin Peterson · 8 years ago
  38. 41e35f3 always define HAVE_LONG_LONG (#27961) by Benjamin Peterson · 8 years ago
  39. f051e43 Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly optimize memcpy(). by Christian Heimes · 8 years ago
  40. 47ff073 more PY_LONG_LONG to long long by Benjamin Peterson · 8 years ago
  41. 2f8bfef replace PY_SIZE_MAX with SIZE_MAX by Benjamin Peterson · 8 years ago
  42. b9d9eed require uintptr_t to exist by Benjamin Peterson · 8 years ago
  43. 88bd3ed only include inttypes.h (#17884) by Benjamin Peterson · 8 years ago
  44. 4fe5510 require standard int types to be defined (#17884) by Benjamin Peterson · 8 years ago
  45. af580df replace PY_LONG_LONG with long long by Benjamin Peterson · 8 years ago
  46. ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 8 years ago
  47. 6349612 Issue #10910: merge from 3.5 by Ned Deily · 8 years ago
  48. 3d45599 Issue #10910: Update FreedBSD version checks for the ctype UTF-8 workaround. by Ned Deily · 8 years ago
  49. 7659aab Issue #10910: Avoid C++ compilation errors on FreeBSD and OS X. by Ned Deily · 8 years ago
  50. 1f9eb87 Issue #26857: The gethostbyaddr_r() workaround is no longer needed with by Stefan Krah · 8 years ago
  51. dfa4e04 Issue #23943: Fix typos. Patch by Piotr Kasprzyk. by Berker Peksag · 9 years ago
  52. 4882cac Issue #23943: Fix typos. Patch by Piotr Kasprzyk. by Berker Peksag · 9 years ago
  53. 8fc8980 Issue #23524: Replace _PyVerify_fd function with calls to _set_thread_local_invalid_parameter_handler. by Steve Dower · 9 years ago
  54. f329878 Issue #23753: Python doesn't support anymore platforms without stat() or by Victor Stinner · 9 years ago
  55. 8bdeb16 support setting fpu precision on m68k (closes #20904) by Benjamin Peterson · 10 years ago
  56. ebdcb50 Issue #19730: Argument Clinic now supports all the existing PyArg by Larry Hastings · 11 years ago
  57. 985ecdc ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. by Christian Heimes · 11 years ago
  58. aa2b22a Restore prototypes for the 'openpty' and 'forkpty' on BSDI (broken in issue #1772673). by Serhiy Storchaka · 11 years ago
  59. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  60. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  61. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  62. 14b9b11 If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified. by Victor Stinner · 11 years ago
  63. 99d6135 Define S_IFMT and S_IFLNK in pyport.h so posixmodule.c can use named constants instead by Christian Heimes · 11 years ago
  64. c6ebd16 Issue #11016: Try to fix compilaton of the new _stat.c module on Windows by Victor Stinner · 11 years ago
  65. 7e91e77 Close #17931: Fix PyLong_FromPid() on Windows 64-bit: processes are identified by Victor Stinner · 11 years ago
  66. f6b687f remove support GCC PyArg_ParseTuple format patch, last seen in 2006 by Benjamin Peterson · 11 years ago
  67. 8e7586b Issue #17047: remove doubled words added in 3.4, by Terry Jan Reedy · 11 years ago
  68. 27dc02e Fix the internals of our hash functions to used unsigned values during hash by Gregory P. Smith · 12 years ago
  69. c2176e4 Fix the internals of our hash functions to used unsigned values during hash by Gregory P. Smith · 12 years ago
  70. 27cbcd6 Fix the internals of our hash functions to used unsigned values during hash by Gregory P. Smith · 12 years ago
  71. 6e61d18 Issue 10052: merge fix from 3.2. by Mark Dickinson · 12 years ago
  72. ce31f66 Issue 10052: fix failed uint32_t / uint64_t / int32_t / int64_t detection on some platforms. by Mark Dickinson · 12 years ago
  73. 983bc16 Issue 10052: fix failed uint32_t / uint64_t / int32_t / int64_t detection on some platforms. by Mark Dickinson · 12 years ago
  74. 36f0216 Backport 9dd4638de73b. by Stefan Krah · 12 years ago
  75. 2cbbed6 Issue #6308: Try to fix the termios build failure on HP-UX. by Stefan Krah · 12 years ago
  76. 3962d5e Minor typo fix. by Georg Brandl · 12 years ago
  77. 743e0cd Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unified by Christian Heimes · 12 years ago
  78. b176203 #16135: Removal of OS/2 support (C code and Docs) by Jesus Cea · 12 years ago
  79. b0f0047 Issue #13889: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  80. 18e3d81 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
  81. f5b62a9 Consolidate the occurrances of the prime used as the multiplier when hashing. by Gregory P. Smith · 13 years ago
  82. 63e6c32 Consolidate the occurrances of the prime used as the multiplier when hashing by Gregory P. Smith · 13 years ago
  83. 794d567 any_find_slice() doesn't use callbacks anymore by Victor Stinner · 13 years ago
  84. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  85. 0390151 Fix typo in comment: _PyHash_Double -> _Py_HashDouble. by Mark Dickinson · 13 years ago
  86. 6646cd4 Issue #10325: Fix two issues in the fallback definitions of PY_LLONG_MAX and by Mark Dickinson · 14 years ago
  87. 8035bc5 follow up to #9778: define and use an unsigned hash type by Benjamin Peterson · 14 years ago
  88. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  89. 3861599 Remove pointers to a FAQ entry that no longer exists. Incorporate some text from the old FAQ into the docs by Daniel Stutzbach · 14 years ago
  90. a606faa Issue 5553: Improved Py_LOCAL_INLINE to actually inline under compilers other than MSC by Daniel Stutzbach · 14 years ago
  91. f0f4514 Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 by Alexander Belopolsky · 14 years ago
  92. dc787d2 Issue #8188: Introduce a new scheme for computing hashes of numbers by Mark Dickinson · 14 years ago
  93. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  94. 501aeff Merged revisions 80178 via svnmerge from by Ronald Oussoren · 14 years ago
  95. a4962cb Merged revisions 76561 via svnmerge from by Mark Dickinson · 15 years ago
  96. 6ce4a9a Merged revisions 76308 via svnmerge from by Mark Dickinson · 15 years ago
  97. 835a6c8 Merged revisions 73701 via svnmerge from by Mark Dickinson · 15 years ago
  98. a4262b9 Add comments to pyport.h explaining how to enable support for short by Mark Dickinson · 15 years ago
  99. 7abf8d4 The SSE2 detection and enabling could potentially cause by Mark Dickinson · 15 years ago
  100. 60fd099 Issue #5781: Only use legacy string<->double conversions when by Mark Dickinson · 15 years ago