Final head of the former 2.2 branch
  1. 772db88 Bump the version number by Barry Warsaw · 22 years ago
  2. abf32d6 Bump the version to 2.2.3 (final). by Guido van Rossum · 22 years ago
  3. e47b01f Bumping PY_VERSION by Barry Warsaw · 22 years ago
  4. 6c75479 Backport fix for SF bug 734869 and sundry compiler cleanups. by Jeremy Hylton · 22 years ago
  5. 53b0179 Prepare for 2.2.3c1 (release candidate 1) by Barry Warsaw · 22 years ago
  6. b5dd257 Fix broken API descriptions in comments. by Fred Drake · 22 years ago
  7. 539afe0 More backporting of gc-vs-__del__ fixes. It should be fixed for instances by Tim Peters · 22 years ago
  8. 82550d5 Added private API function _PyInstance_Lookup(). This is part of by Tim Peters · 22 years ago
  9. 3c5173c Patch #710576: Implement per-interpreter-state codec registries. by Martin v. Löwis · 22 years ago
  10. 2339384 Bump release version to 2.2.2 -- the final release is imminent. by Guido van Rossum · 23 years ago
  11. 2e382ca Upgrade the version *string* by adding a '+'. This marks the first by Guido van Rossum · 23 years ago
  12. d1bb755 Backport: by Michael W. Hudson · 23 years ago
  13. 5e40e74 This is Armin Rigo's patch: by Michael W. Hudson · 23 years ago
  14. ddd3f0e This is Armin Rigo's patch: by Michael W. Hudson · 23 years ago
  15. 6acdcd2 Assorted changes needed to release 2.2.2b1. by Tim Peters · 23 years ago
  16. b3861ce Backport last checkin: by Neal Norwitz · 23 years ago
  17. ea2b436 Backport patch (also pointed out in SF #607253): by Neal Norwitz · 23 years ago
  18. 727bbab Backport revision 1.6 by jackjansen; by Neal Norwitz · 23 years ago
  19. dff08ea Change the version to 2.2.2a0. (Whether we're going to do a 2.2.2 by Guido van Rossum · 23 years ago
  20. aa82bc0 Backport checkin: by Walter Dörwald · 23 years ago
  21. 1c9bcc0 Update patch level and Windows build number for 2.2.1 final. by Tim Peters · 23 years ago
  22. 1f92d72 Bump release to 2.2.1c2. by Tim Peters · 23 years ago
  23. 8429b1a backport akuchling's checkin of revision 2.19 of traceback.h by Michael W. Hudson · 23 years ago
  24. 2510b46 backport jhylton's checkin of revision 2.2 of cellobject.h by Michael W. Hudson · 23 years ago
  25. 21c9324 Rename this build 2.2.1c1. by Tim Peters · 23 years ago
  26. 879e96f This has been declared to work. by Michael W. Hudson · 23 years ago
  27. 7a4b55dd backport tim_one's checkin of by Michael W. Hudson · 23 years ago
  28. 9cda54d Assorted Windows buildno, copyright and version number changes for 2.2.1a1. by Tim Peters · 23 years ago
  29. a06a7fb Bump version number. by Michael W. Hudson · 23 years ago
  30. 0d21e64 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 24 years ago
  31. f63438a Implement PyObject_DelItemString. Fixes #498915. by Martin v. Löwis · 24 years ago
  32. 2276818 This commit was manufactured by cvs2svn to create branch 'release22-maint'. by cvs2svn · 24 years ago
  33. 19554f6 As usual, bump the version number. by Barry Warsaw · 24 years ago
  34. 12ce485 Add helper macro to get the number of free variables for a PyCodeObject. by Jeremy Hylton · 24 years ago
  35. f582b82 SF bug #491415 PyDict_UpdateFromSeq2() unused by Tim Peters · 24 years ago
  36. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 24 years ago
  37. 301d0f8 PyMethodObject(): Update the comment about im_class based upon a by Guido van Rossum · 24 years ago
  38. 3caca23 SF bug #488514: -Qnew needs work by Tim Peters · 24 years ago
  39. 5defb17 Stop defining NDEBUG in Python.h, because it can interfere with by Tim Peters · 24 years ago
  40. 6b70599 Fix SF bug #486144: Uninitialized __slot__ vrbl is None. by Guido van Rossum · 24 years ago
  41. faad5ad mysnprintf.c: Massive rewrite of PyOS_snprintf and PyOS_vsnprintf, to by Tim Peters · 24 years ago
  42. c1bbcb8 PyFile_WriteString(): change prototype so that the string arg is by Tim Peters · 24 years ago
  43. a437d45 Removed preprocessor gimmick trying to force use of snprintf emulation by Tim Peters · 24 years ago
  44. 7c7ee5f Fix SF bug [ #476852 ] Some bad macros in abstract.h by Jeremy Hylton · 24 years ago
  45. 754b712 Bumping version number. by Barry Warsaw · 24 years ago
  46. 89c3a22 Add PyObject_CheckReadBuffer(), which returns true if its argument by Jeremy Hylton · 24 years ago
  47. 537a69f Make the CoreFoundation object _New and _Convert routines available to other modules. Idea by Donovan Preston, implementaion by me. by Jack Jansen · 24 years ago
  48. b0c079e PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs() by Fred Drake · 24 years ago
  49. bd67d6f SF patch #475657 (Dietmar Schwertberger) by Guido van Rossum · 24 years ago
  50. 3abca12 SF bug #475327: type() produces incorrect error msg by Tim Peters · 24 years ago
  51. b421b8c Added two new functions to conveniently call functions/methods from C. by Fred Drake · 24 years ago
  52. 1fc240e Generalize dictionary() to accept a sequence of 2-sequences. At the by Tim Peters · 24 years ago
  53. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 24 years ago
  54. eb9b103 Check for HP/UX curses problems. Define _XOPEN_SOURCE_EXTENDED and by Martin v. Löwis · 24 years ago
  55. 6bc55c4 Oops, undo previous change, which wasn't supposed to escape from my by Jack Jansen · 24 years ago
  56. 5d528b7 Tweaks for MacPython 2.2b1 by Jack Jansen · 24 years ago
  57. e4616e6 PyArg_UnpackTuple(): New argument unpacking function suggested by Jim by Fred Drake · 24 years ago
  58. 90b6890 Add function attributes that allow GCC to check the arguments of printf-like by Neil Schemenauer · 24 years ago
  59. 1569108 Hide GCC attributes fom compilers that don't support them. by Neil Schemenauer · 24 years ago
  60. c8e5645 Methods of built-in types now properly check for keyword arguments by Guido van Rossum · 24 years ago
  61. 6d20407 Big internal change that should have no external effects: unify the by Guido van Rossum · 24 years ago
  62. 51e4f1f Updated version numbers for post 2.2b1 development. by Barry Warsaw · 24 years ago
  63. b8c65bc SF patch #470578: Fixes to synchronize unicode() and str() by Guido van Rossum · 24 years ago
  64. 98bf58f SF patch #462296: Add attributes to os.stat results; by Nick Mathewson. by Guido van Rossum · 24 years ago
  65. 3c28863 Partial patch from SF #452266, by Jason Petrone. by Guido van Rossum · 24 years ago
  66. 687ae00 Get rid of __defined__ and tp_defined -- there's no need to by Guido van Rossum · 24 years ago
  67. 2f3ca6e Completely get rid of __dynamic__ and the corresponding by Guido van Rossum · 24 years ago
  68. 5aace07 Use an assert() for the REQ() macro instead of making up our own assertion. by Guido van Rossum · 24 years ago
  69. 1c91707 Very subtle syntax change: in a list comprehension, the testlist in by Guido van Rossum · 24 years ago
  70. 6953233 Check for term.h and include it on non-ncurses system to get a declaration by Martin v. Löwis · 24 years ago
  71. 9e4ca10 SF bug [#467145] Python 2.2a4 build problem on HPUX 11.0. by Tim Peters · 24 years ago
  72. 1c45073 Keep track of a type's subclasses (subtypes), in tp_subclasses, which by Guido van Rossum · 24 years ago
  73. f2a67da Guido suggests, and I agree, to insist that SIZEOF_VOID_P be a power of 2. by Tim Peters · 24 years ago
  74. 6d483d3 _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value. by Tim Peters · 24 years ago
  75. 406fe3b Repaired the debug Windows deaths in test_descr, by allocating enough by Tim Peters · 24 years ago
  76. 335244c Remove bogus declaration. by Fred Drake · 24 years ago
  77. b3f0d34 PyObject_ClearWeakRefs() is now a real function instead of a function pointer; by Fred Drake · 24 years ago
  78. 19bc578 Include the weakref object interface. by Fred Drake · 24 years ago
  79. 8844d52 The weak reference implementation, separated from the weakref module. by Fred Drake · 24 years ago
  80. bb9fa21 weakref.ReferenceError becomes a built-in exception now that weak ref objects by Fred Drake · 24 years ago
  81. b1c4698 Introduced the oddly-missing PyList_CheckExact(), and used it to replace by Tim Peters · 24 years ago
  82. f4593e0 *EXPERIMENTAL* speedup of slot_sq_item. This sped up the following by Guido van Rossum · 24 years ago
  83. 048eb75 Add Garbage Collection support to new-style classes (not yet to their by Guido van Rossum · 24 years ago
  84. 092a7a8 SF patch [#466353] Py_HUGE_VAL on BeOS for Intel. by Tim Peters · 24 years ago
  85. 3c1b4a4 PY_RELEASE_SERIAL => 4 PY_VERSION => "2.2a4+" by Barry Warsaw · 24 years ago
  86. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 24 years ago
  87. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 24 years ago
  88. c60e6f7 Patch #435971: UTF-7 codec by Brian Quinlan. by Marc-André Lemburg · 24 years ago
  89. 5e6007c Fix for bug #462737. by Marc-André Lemburg · 24 years ago
  90. ab3b034 Hopefully fix 3-way comparisons. This unfortunately adds yet another by Guido van Rossum · 24 years ago
  91. c299fc1 Add support for restricting access based on restricted execution mode. by Guido van Rossum · 24 years ago
  92. 59c9a64 SF bug [#460467] file objects should be subclassable. by Tim Peters · 24 years ago
  93. 2400fa4 Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 24 years ago
  94. 78e0fc7 Possibly the end of SF [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 24 years ago
  95. 5a49ade More on SF bug [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 24 years ago
  96. 4c3a0a3 More on SF bug [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 24 years ago
  97. 7b04946 Prototype for PyMac_GetFullPathname(). by Jack Jansen · 24 years ago
  98. 7a50f25 More for SF bug [#460020] bug or feature: unicode() and subclasses by Tim Peters · 24 years ago
  99. 64b5ce3 SF bug #460020: bug or feature: unicode() and subclasses. by Tim Peters · 24 years ago
  100. b875509 PyModule_Check() now checks for subtype of module, as it should. by Guido van Rossum · 24 years ago