1. 578c395 bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636) by Serhiy Storchaka · 4 years, 2 months ago
  2. 1b55b65 bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521) by Dong-hee Na · 4 years, 6 months ago
  3. 3a4f667 Cut disused recode_encoding logic in _PyBytes_DecodeEscape. (GH-16013) by Greg Price · 4 years, 11 months ago
  4. 3c8724f bpo-33407: Implement Py_DEPRECATED() on MSVC (GH-8980) by Zackery Spytz · 5 years ago
  5. a5119e7 bpo-36957: Add _PyLong_Rshift() and _PyLong_Lshift(). (GH-13416) by Serhiy Storchaka · 5 years ago
  6. 6a44f6e bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952) by Serhiy Storchaka · 5 years ago
  7. 7cb7bcf bpo-20260: Implement non-bitwise unsigned int converters for Argument Clinic. (GH-8434) by Serhiy Storchaka · 6 years ago
  8. ba85d69 bpo-29878: Add global instances of int for 0 and 1. (#852) by Serhiy Storchaka · 7 years ago
  9. 460bd0d Issue #19569: Compiler warnings are now emitted if use most of deprecated by Serhiy Storchaka · 8 years ago
  10. 9fab79b Issue #26900: Excluded underscored names and other private API from limited API. by Serhiy Storchaka · 8 years ago
  11. af580df replace PY_LONG_LONG with long long by Benjamin Peterson · 8 years ago
  12. ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 8 years ago
  13. 8bde911 Issue #27626: Merge spelling fixes from 3.5 by Martin Panter · 8 years ago
  14. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  15. 2ec8063 Modify _PyBytes_DecodeEscapeRecode() to use _PyBytesAPI by Victor Stinner · 9 years ago
  16. 2bf8993 Optimize bytes.fromhex() and bytearray.fromhex() by Victor Stinner · 9 years ago
  17. be75b8c Issue #25349: Optimize bytes % int by Victor Stinner · 9 years ago
  18. 48e47aa Issue #22486: Added the math.gcd() function. The fractions.gcd() function now is by Serhiy Storchaka · 9 years ago
  19. c4f3212 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 11 years ago
  20. 31a6554 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 11 years ago
  21. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  22. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  23. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  24. 579ddc2 Issue #16741: Fix an error reporting in int(). by Serhiy Storchaka · 11 years ago
  25. f6d0aee Issue #16741: Fix an error reporting in int(). by Serhiy Storchaka · 11 years ago
  26. ac0ad88 Issue #17931: Resolve confusion on Windows between pids and process handles. by Richard Oudkerk · 11 years ago
  27. 9101e23 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  28. 441d30f Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  29. 7898043 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  30. d3f0882 Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args and str.format(args) by Victor Stinner · 12 years ago
  31. 2aa2b3b Clean up a few tabs that went in with PEP393. by Ezio Melotti · 13 years ago
  32. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  33. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  34. 67c7ce4 Issue #4835: make PyLong_FromSocket_t() and PyLong_AsSocket_t() private by Antoine Pitrou · 14 years ago
  35. d19052c Issue #9089: Remove references to intobject.c and intobject.h from comments. by Mark Dickinson · 14 years ago
  36. fa68a61 Fix naming inconsistency. by Mark Dickinson · 14 years ago
  37. 7f1bf80 Issue #8817: Expose round-to-nearest variant of divmod in _PyLong_Divmod_Near by Mark Dickinson · 14 years ago
  38. 8450857 Change PARSE_PID to _Py_PARSE_PID (cleanup for r78946). by Gregory P. Smith · 14 years ago
  39. fb94c5f * Replaces the internals of the subprocess module from fork through exec on by Gregory P. Smith · 14 years ago
  40. 93f562c Merged revisions 77842 via svnmerge from by Mark Dickinson · 15 years ago
  41. 6ecd9e5 Merged revisions 77234 via svnmerge from by Mark Dickinson · 15 years ago
  42. bd79264 Issue #4258: Make it possible to use 30-bit digits for PyLongs: by Mark Dickinson · 15 years ago
  43. 3563153 Reduce the size of the _PyLong_DigitValue table. by Raymond Hettinger · 16 years ago
  44. 4a7d76d Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 16 years ago
  45. 8445104 Drop _PyLong_FitsInLong. Fixes #1666. by Martin v. Löwis · 17 years ago
  46. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  47. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  48. d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 17 years ago
  49. f78b1c6 I've moved the remains of PyInt_ to the longobject.h header file and removed the inclusing of intobject.h from Python.h. Now the intobject.h exists only to provide some aliases for porters from Python 2.x. by Christian Heimes · 17 years ago
  50. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  51. 39eb8fa This is roughly socket2.diff from issue 1378, with a few changes applied by Guido van Rossum · 17 years ago
  52. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  53. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  54. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  55. 88d65bd I assume this was supposed to be Py_ssize_t since there are no uses of plain ssize_t. by Neal Norwitz · 17 years ago
  56. 27d517b Merged revisions 53875-53911 via svnmerge from by Thomas Wouters · 17 years ago
  57. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  58. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  59. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  60. 7790c3b Removed redundant declaration of _PyLong_NumBits(). by Tim Peters · 20 years ago
  61. a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 21 years ago
  62. b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 21 years ago
  63. 5b8132f _PyLong_NumBits(): The definition of this was too specific to the quirky by Tim Peters · 22 years ago
  64. baefd9e Added new private API function _PyLong_NumBits. This will be used at the by Tim Peters · 22 years ago
  65. 91a681d Excise DL_EXPORT from Include. by Mark Hammond · 22 years ago
  66. 60519e8 HAVE_LIMITS_H -- raise #error if not defined; limits.h is std C by Tim Peters · 22 years ago
  67. 64b5ce3 SF bug #460020: bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  68. a1c1b0f Introduce new private API function _PyLong_AsScaledDouble. Not used yet, by Tim Peters · 23 years ago
  69. c16fcdf Make the PyXXX_Check() macros for the numeric types inheritance-aware. by Guido van Rossum · 23 years ago
  70. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  71. 2a9b367 Two new private longobject API functions, by Tim Peters · 23 years ago
  72. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  73. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  74. 5eae2c1 Moved LONG_LONG #define from here to pyport.h. by Barry Warsaw · 24 years ago
  75. 9f688bf Some cleanup of longs in prepartion for Cray J90 fixes: got by Tim Peters · 24 years ago
  76. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  77. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  78. 9e896b3 Marc-Andre's third try at this bulk patch seems to work (except that by Guido van Rossum · 24 years ago
  79. 2e6e7d4 Changes for long file support by Steve Clift. by Guido van Rossum · 26 years ago
  80. 43466ec Add DL_IMPORT(returntype) for all officially exported functions. by Guido van Rossum · 26 years ago
  81. 78694d9 Patches from Greg Stein to support 'P' format in struct module's by Guido van Rossum · 26 years ago
  82. 3293b07 Patch by Mark Hammond to support 64-bit ints on MS platforms. by Guido van Rossum · 26 years ago
  83. 1a8791e Changes for BeOS, QNX and long long, by Chris Herborth. by Guido van Rossum · 26 years ago
  84. 53756b1 Added PyLong_FromUnsignedLong() and PyLong_AsUnsignedLong(). by Guido van Rossum · 28 years ago
  85. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  86. 051ab12 make the type a parameter of the DL_IMPORT macro, for Borland C by Guido van Rossum · 29 years ago
  87. 9381782 new names for lots of new functions by Guido van Rossum · 30 years ago
  88. caa6380 The great renaming, phase two: all header files have been updated to by Guido van Rossum · 30 years ago
  89. 5799b52 Added 1995 copyright. by Guido van Rossum · 30 years ago
  90. e89bc75 Changes for dynamic linking under NT by Guido van Rossum · 30 years ago
  91. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  92. b73cc04 * ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c, by Guido van Rossum · 31 years ago
  93. a330996 * Added support for X11 modules. by Guido van Rossum · 31 years ago
  94. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  95. 5113f5f Copyright for 1992 added by Guido van Rossum · 32 years ago
  96. 44c8f69 Added typedef for longobject and declarations for long_{format,scan}. by Guido van Rossum · 33 years ago
  97. 301f1a6 Added declarations for dnewlongobject and dgetlongvalue. by Guido van Rossum · 33 years ago
  98. edcc38a Initial revision by Guido van Rossum · 33 years ago