1. 1aa4700 PyCode_NewEmpty: by Jeffrey Yasskin · 15 years ago
  2. 399e4c4 add _PyObject_LookupSpecial to handle fetching special method lookup by Benjamin Peterson · 15 years ago
  3. a985a3a Issue #5920: Changed format.__float__ and complex.__float__ to use a precision of 12 when using the empty presentation type. This more closely matches str()'s behavior and reduces surprises when adding alignment flags to an empty format string. Patch by Mark Dickinson. by Eric Smith · 15 years ago
  4. 653dece Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal sequences. by Antoine Pitrou · 15 years ago
  5. 9139cc6 Issue #1588: Add complex.__format__. by Eric Smith · 15 years ago
  6. cac7af6 Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k. Should fix Windows buildbot errors. by Eric Smith · 15 years ago
  7. 068f065 Issue #5835, deprecate PyOS_ascii_formatd. by Eric Smith · 15 years ago
  8. aca19e6 Backport of some of the work in r71665 to trunk. This reworks much of by Eric Smith · 15 years ago
  9. 6c0b872 Fix for issue5657. by Ronald Oussoren · 15 years ago
  10. 01c6e6f many more types to initialize (I had to expose some of them) by Benjamin Peterson · 15 years ago
  11. 8e5446f Backport r71704 (add configure check for C99 round function) to trunk. by Mark Dickinson · 15 years ago
  12. 91a3b9e Issue #1113244: Py_XINCREF, Py_DECREF, Py_XDECREF: Add `do { ... } while (0)' by Matthias Klose · 15 years ago
  13. 0610e08 - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings. by Matthias Klose · 15 years ago
  14. ea0d744 revert r71159 since it broke the build by Benjamin Peterson · 15 years ago
  15. 8212a82 - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings. by Matthias Klose · 15 years ago
  16. 789be0c Issue #2396: backport the memoryview object. by Antoine Pitrou · 15 years ago
  17. 238cedc Fix two issues introduced by issue #71031 by changing the signature of by Brett Cannon · 15 years ago
  18. f8387af Issue #4688: Add a heuristic so that tuples and dicts containing only by Antoine Pitrou · 15 years ago
  19. f35f804 Rewrite Py_ARITHMETIC_RIGHT_SHIFT so that it's valid for all signed by Mark Dickinson · 15 years ago
  20. efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 15 years ago
  21. 68d6852 Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with by Jeffrey Yasskin · 16 years ago
  22. 5781f32 remove some PyBytes_* aliases that are not in 3.x by Benjamin Peterson · 16 years ago
  23. bcf6b18 A few more minor fixes in longobject.c by Mark Dickinson · 16 years ago
  24. 2ffb26f Issue #5260: Various portability and standards compliance fixes, optimizations by Mark Dickinson · 16 years ago
  25. bcd3ea8 Issue #5204: Define _PyVerify_fd on VC6 to make test_fdopen (test_os.py) pass. by Hirokazu Yamamoto · 16 years ago
  26. 6a743d3 Issue 4804. Add a function to test the validity of file descriptors on Windows, and stop using global runtime settings to silence the warnings / assertions. by Kristján Valur Jónsson · 16 years ago
  27. c97c909 Issue #4575: fix Py_IS_INFINITY macro to work correctly on x87 FPUs. by Mark Dickinson · 16 years ago
  28. b516370 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 16 years ago
  29. a40d573 #3720: Interpreter crashes when an evil iterator removes its own next function. by Amaury Forgeot d'Arc · 16 years ago
  30. d89f5b2 Fix issue 4884, preventing a crash in the socket code when python is compiled by Jeffrey Yasskin · 16 years ago
  31. 3741bfd Fix #4846 (Py_UNICODE_ISSPACE causes linker error) by moving the declaration by Marc-André Lemburg · 16 years ago
  32. 1bf6401 Use C99 'isfinite' macro in preference to BSD-derived 'finite' function. by Mark Dickinson · 16 years ago
  33. 0ebfedf Fix HAVE_DECL_ISINF/ISNAN test (again). by Mark Dickinson · 16 years ago
  34. 41fbae1 Oops. Need to check not only that HAVE_DECL_ISINF is defined, but also by Mark Dickinson · 16 years ago
  35. d181e3a isinf and isnan are macros, not functions; fix configure script by Mark Dickinson · 16 years ago
  36. fd9633e fix WORD_BIGEDIAN declaration in Universal builds; fixes #4060 and #4728 by Benjamin Peterson · 16 years ago
  37. a925bed Sort UCS-2/UCS-4 name mangling list. by Alexandre Vassalotti · 16 years ago
  38. d8f8ee4 Fix name mangling of PyUnicode_ClearFreeList. by Alexandre Vassalotti · 16 years ago
  39. d0c3515 Issue #2183: Simplify and optimize bytecode for list comprehensions. by Antoine Pitrou · 16 years ago
  40. 44a90c9 move unprefixed error into .c file by Benjamin Peterson · 16 years ago
  41. 07d539d #4122: On Windows, Py_UNICODE_ISSPACE cannot be used in an extension module: by Amaury Forgeot d'Arc · 16 years ago
  42. 12582c9 Bump to 2.7a0 by Barry Warsaw · 16 years ago
  43. afa1436 Bumping to 2.6 final. by Barry Warsaw · 16 years ago
  44. 41c56b5 build_os2emx.patch in issue 3868 - update OS/2 EMX makefile and config files by Andrew MacIntyre · 16 years ago
  45. 0c5ca57 done with 2.6rc2 by Barry Warsaw · 16 years ago
  46. 6af1619 Bumping to 2.6rc2 by Barry Warsaw · 16 years ago
  47. dfd6b86 post release updates by Barry Warsaw · 16 years ago
  48. f5f9d99 Fix the release level by Barry Warsaw · 16 years ago
  49. 1e62aec Bumping to 2.6rc1 by Barry Warsaw · 16 years ago
  50. d4ae97b #3668: When PyArg_ParseTuple correctly parses a s* format, but raises an by Antoine Pitrou · 16 years ago
  51. 0668c62 Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to by Antoine Pitrou · 16 years ago
  52. 14cb6bc sort of backport 66038 by aliasing PyObject_Bytes to PyObject_Str by Benjamin Peterson · 16 years ago
  53. 6a0b559 done with the release by Barry Warsaw · 16 years ago
  54. 07a4a38 Bump to 2.6b3. by Barry Warsaw · 16 years ago
  55. 69ed101 Hopeful fix for issue 1878: remove Py_TPFLAGS_HAVE_VERSION_TAG from by Guido van Rossum · 16 years ago
  56. 6b094a4 fix a little typo by Benjamin Peterson · 16 years ago
  57. 025d939 fix compile errors by Benjamin Peterson · 16 years ago
  58. e0d4c7b expose PySTEntry.nested so the symtable module will work by Benjamin Peterson · 16 years ago
  59. f91d46a Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple, by Martin v. Löwis · 16 years ago
  60. 0470bab Issue #2620: Overflow checking when allocating or reallocating memory by Gregory P. Smith · 16 years ago
  61. ecb8c79 Post release cleanup by Barry Warsaw · 16 years ago
  62. daddf03 Bumping to 2.6b2 by Barry Warsaw · 16 years ago
  63. 53663a6 Issue 2235: __hash__ is once again inherited by default, but inheritance can be blocked explicitly so that collections.Hashable remains meaningful by Nick Coghlan · 16 years ago
  64. 8d412f3 Issue #3274: Use a less common identifier for the temporary variable by Alexandre Vassalotti · 16 years ago
  65. 2252d11 #3342: In tracebacks, printed source lines were not indented since r62555. by Amaury Forgeot d'Arc · 16 years ago
  66. 2fe7706 - Issue #2862: Make int and float freelist management consistent with other by Gregory P. Smith · 16 years ago
  67. 9c437af Revert 64424, 64438, and 64439. by Raymond Hettinger · 16 years ago
  68. 65fe47b Modified interface to _Py_[String|Unicode]InsertThousandsGrouping, in anticipation of fixing issue 3140. by Eric Smith · 16 years ago
  69. e3ae655 Make bin() implementation parallel oct() and hex() so that int/long subclasses can override or so that other classes can support. by Raymond Hettinger · 16 years ago
  70. 060792c Post release changes by Barry Warsaw · 16 years ago
  71. b5d1740 Bumping to 2.6b1 by Barry Warsaw · 16 years ago
  72. a4dd2e2 Restore support for Microsoft VC6 compiler. by Amaury Forgeot d'Arc · 16 years ago
  73. 114f7e5 #1683 prevent forking from interfering in threading storage by Benjamin Peterson · 16 years ago
  74. fe22a45 Correct an incorrect comment about our #include of stddef.h. by Gregory P. Smith · 16 years ago
  75. 9d53457 Merge in release25-maint r60793: by Gregory P. Smith · 16 years ago
  76. e0b9261 swap stringobject.h and bytesobject.h contents to make sense. PyString in by Gregory P. Smith · 16 years ago
  77. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  78. 0144f27 Remove locking part of new buffer protocol. by Travis E. Oliphant · 16 years ago
  79. 259a566 Fix preprocessor statement. by Thomas Heller · 16 years ago
  80. 5640ce2 MacOS X: Enable 4-way universal builds by Ronald Oussoren · 16 years ago
  81. 1bd52d7 Make the _H #define's match the header file names. Fix comments to by Gregory P. Smith · 16 years ago
  82. 9981589 New environment variable PYTHONIOENCODING. by Martin v. Löwis · 16 years ago
  83. dc13b79 Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 16 years ago
  84. 74a1dea #2989: add PyType_Modified(). by Georg Brandl · 16 years ago
  85. b17ad2d wrap line by Benjamin Peterson · 16 years ago
  86. dacde0d turn PyErr_WarnPy3k into a macro by Benjamin Peterson · 16 years ago
  87. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  88. 3497f94 First step of the C API rename: by Christian Heimes · 16 years ago
  89. 8c255e4 Patch #1722225: Support QNX 6. by Martin v. Löwis · 16 years ago
  90. cf537ff Addresses issue 2802: 'n' formatting for integers. by Eric Smith · 16 years ago
  91. bf5bd9f Post tag updates. by Barry Warsaw · 16 years ago
  92. 6cc7940 Bump to 2.6a3 by Barry Warsaw · 16 years ago
  93. af748c3 Implemented PEP 370 by Christian Heimes · 16 years ago
  94. a692c4d Added PyErr_WarnPy3k function. (issue 2671) I will be converting current Py3k warnings to the use of this function soon. by Benjamin Peterson · 16 years ago
  95. 19dfa3e Remove Py_Refcnt, Py_Type, Py_Size, as they were added only by Martin v. Löwis · 16 years ago
  96. c873550 Stupid me. Py_RETURN_NAN should actually return something ... by Christian Heimes · 16 years ago
  97. 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
  98. 820b51c #2627 Let it be known what pgen generates by Benjamin Peterson · 16 years ago
  99. 0a4f895 Fix compiler warning Include/warnings.h:19:28: warning: no newline at end of file by Christian Heimes · 16 years ago
  100. e974689 Re-implement the 'warnings' module in C. This allows for usage of the by Brett Cannon · 16 years ago