Final head of the former 2.1 branch
  1. 0c71748 Change string version to "2.1.3+". by Guido van Rossum · 23 years ago
  2. f599b74 Backport fixes for two nested scopes bugs. by Jeremy Hylton · 23 years ago
  3. 09d7fc6 beginning the dance of the sugar-plum micro-release. by Anthony Baxter · 23 years ago
  4. d9ba4cf Bump version to 2.1.2 final. by Guido van Rossum · 24 years ago
  5. 438d267 tweak version numbers - 2.1.2c1, release candidate. by Anthony Baxter · 24 years ago
  6. d7d92af 2.1.2 release continues... by Anthony Baxter · 24 years ago
  7. 9978957 Add a '+' to the version to indicate this is a post-2.1.1-release CVS version. by Guido van Rossum · 24 years ago
  8. 1a39e8e Update the version to the final 2.1.1. by Guido van Rossum · 24 years ago
  9. bfc74e8 2.1.1c1 WIndows fiddling, plus patchlevel.h. by Tim Peters · 24 years ago
  10. 5829456 Backport Martin's checkin 2.16: by Thomas Wouters · 24 years ago
  11. ac4094b Backport of Tim's checkin 2.27: by Thomas Wouters · 24 years ago
  12. 9e0595e Set the version number to 2.1.1a1. This checkin inaugurates the by Guido van Rossum · 24 years ago
  13. a839747 This commit was manufactured by cvs2svn to create branch 'release21-maint'. by cvs2svn · 24 years ago
  14. 95f301f Update the version to 2.1final (again :-). by Guido van Rossum · 24 years ago
  15. a7a391c We need another release candidate after so many "small" changes. by Guido van Rossum · 24 years ago
  16. bfedde8 Prepare for release candidate 1... aka 2.1c1. by Guido van Rossum · 24 years ago
  17. 6a1c87d Add the necessary field for weak reference support to the function and by Fred Drake · 24 years ago
  18. b5c5132 Add sys.excepthook. by Ka-Ping Yee · 24 years ago
  19. 4e262a9 A small change to the C API for weakly-referencable types: Such types by Fred Drake · 24 years ago
  20. 2e2cded Set the line number correctly for a nested function with an exec or by Jeremy Hylton · 24 years ago
  21. bc32024 Extend support for from __future__ import nested_scopes by Jeremy Hylton · 24 years ago
  22. 061d106 If a code object is compiled with nested scopes, define the CO_NESTED flag. by Jeremy Hylton · 24 years ago
  23. 823649d Move the code implementing isinstance() and issubclass() to new C by Guido van Rossum · 24 years ago
  24. b845cb0 Bump version to 2.1b2. by Guido van Rossum · 24 years ago
  25. 30c9f39 Variety of small INC/DECREF patches that fix reported memory leaks by Jeremy Hylton · 24 years ago
  26. f0ee4b2 RISCOS patch by dschwertberger by Guido van Rossum · 24 years ago
  27. 9f324e9 Useful future statement support for the interactive interpreter by Jeremy Hylton · 24 years ago
  28. 1b6e6c0 Here we go again, another round of version bumping... by Guido van Rossum · 24 years ago
  29. 99858b5 add DEF_BOUND by Jeremy Hylton · 24 years ago
  30. 1bcb7e9 Add declaration for PyErr_WarnExplicit(). by Guido van Rossum · 24 years ago
  31. ad3d3f2 Improve SyntaxErrors for bad future statements. Set file and location by Jeremy Hylton · 24 years ago
  32. 39e2f3f Presumed correct compiler pass for future statements by Jeremy Hylton · 24 years ago
  33. 4db62b1 Improved __future__ parser; still more to do by Jeremy Hylton · 24 years ago
  34. a35c688 Add Vladimir Marangozov's object allocator. It is disabled by default. This by Neil Schemenauer · 24 years ago
  35. 29906ee Preliminary support for future nested scopes by Jeremy Hylton · 24 years ago
  36. b60654b The return value from PyObject_ClearWeakRefs() is no longer meaningful, by Fred Drake · 24 years ago
  37. a903ad98 _Py_ReleaseInternedStrings(): Private API function to decref and by Barry Warsaw · 24 years ago
  38. cb17ae8 Relax the rules for using 'from ... import *' and exec in the presence by Jeremy Hylton · 25 years ago
  39. 693291b Superseded by $(srcdir)/Makefile.pre.in. by Neil Schemenauer · 25 years ago
  40. 2a74a28 bump to 2.1a2 by Jeremy Hylton · 25 years ago
  41. 5acc0c0 Fix symbol table pass to generation SyntaxError exceptions that by Jeremy Hylton · 25 years ago
  42. 4b38da6 Move a bunch of definitions that were internal to compile.c to by Jeremy Hylton · 25 years ago
  43. 033f312 Use a type flag to determine the applicability of the tp_weaklistoffset by Fred Drake · 25 years ago
  44. 3faa52e Allow 'continue' inside 'try' clause SF patch 102989 by Thomas Wouters by Jeremy Hylton · 25 years ago
  45. 483638c Undo recent change that banned using import to bind a global, as per by Jeremy Hylton · 25 years ago
  46. 41deb1e PEP 205, Weak References -- initial checkin. by Fred Drake · 25 years ago
  47. 2b724da Remove f_closure slot of frameobject and use f_localsplus instead. by Jeremy Hylton · 25 years ago
  48. 05473ed Added prototype for PyInstance_NewRaw(). by Fred Drake · 25 years ago
  49. d9b9ac8 It's unclear whether PyMarshal_XXX() are part of the public or private API. by Tim Peters · 25 years ago
  50. 73a3c8f The addition of new parameters to functions in the Python/C API requires by Fred Drake · 25 years ago
  51. 64949cb PEP 227 implementation by Jeremy Hylton · 25 years ago
  52. fbd849f PEP 227 implementation by Jeremy Hylton · 25 years ago
  53. bacca54 Add a flag to indicate the presence of the tp_richcompare field, and by Guido van Rossum · 25 years ago
  54. 430d773 PyGC_Dump() -> _PyGC_Dump() by Barry Warsaw · 25 years ago
  55. 10418eb PyObject_Dump() -> _PyObject_Dump() by Barry Warsaw · 25 years ago
  56. 803eff2 Add prototype for PyGC_Dump() -- but only inside the #ifdef WITH_CYCLE_GC. by Barry Warsaw · 25 years ago
  57. 6a25e21 Add prototype for PyObject_Dump(). by Barry Warsaw · 25 years ago
  58. 2975786 Add a new API, PyThreadState_DeleteCurrent() that combines by Guido van Rossum · 25 years ago
  59. 76b642d Remove include-file-dependant half-prototype of clnt_create(). by Thomas Wouters · 25 years ago
  60. e75e6d0 Move declaration of 'clnt_create()' NIS function to pyport.h, as it's by Thomas Wouters · 25 years ago
  61. a6c861f Fix comment. by Neil Schemenauer · 25 years ago
  62. 0fdb90c refactored the unicodeobject/ucnhash interface, to hide the by Fredrik Lundh · 25 years ago
  63. 60f42b5 Move distributed and duplicated config for stat() and fstat() into pyport.h. by Tim Peters · 25 years ago
  64. 7226429 Get rid of the declaration for _PyCompareState_Key. by Guido van Rossum · 25 years ago
  65. ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 25 years ago
  66. c219d55 Rich comparisons: ensure that LT == Py_LT, etc. by Guido van Rossum · 25 years ago
  67. 5f284ce Introduction to rich comparisons: by Guido van Rossum · 25 years ago
  68. 31c6943 Bump version to 2.1a1. (To be released Friday.) by Guido van Rossum · 25 years ago
  69. d6a9e84 Committing PEP 232, function attribute feature, approved by Guido. by Barry Warsaw · 25 years ago
  70. 234fb63 Change LONG_BIT error warning to mention glibc, too, since this is really by Andrew M. Kuchling · 25 years ago
  71. a7ed694 - Add nb_cmp slot for new style nubmers. by Neil Schemenauer · 25 years ago
  72. dd038db Remove PyInstance_*BinOp functions. by Neil Schemenauer · 25 years ago
  73. 0c7a0bd Added header file for C API exported by _cursesmodule.c by Andrew M. Kuchling · 25 years ago
  74. 429b41e Add declarations for PySys_ResetWarnOptions() and PySys_AddWarnOption(). by Guido van Rossum · 25 years ago
  75. 3fc3037 Add declarations for standard warning category classes (PyExc_Warning by Guido van Rossum · 25 years ago
  76. 2cffc7d Move our own getopt() implementation to _PyOS_GetOpt(), and use it by Thomas Wouters · 25 years ago
  77. 20da14c getting close by Jeremy Hylton · 25 years ago
  78. 0a7af40 Use suggested workaround for PyOS_CheckStack causing failure of test_[s]re.py by Trent Mick · 25 years ago
  79. 1e75e81 bump patchlevel to 2.0c1 by Jeremy Hylton · 25 years ago
  80. 77317ca Added Py_FPROTO macro which was available in Python 1.5.x and below. by Marc-André Lemburg · 25 years ago
  81. d57731f Move LONG_BIT from intobject.c to pyport.h. #error if it's already been by Tim Peters · 25 years ago
  82. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 25 years ago
  83. 39d59b4 It's..... by Guido van Rossum · 25 years ago
  84. 9e28515 Andrew Kuchling <akuchlin@mems-exchange.org>: by Fred Drake · 25 years ago
  85. 38fd5b6 Derived from Martin's SF patch 110609: support unbounded ints in %d,i,u,x,X,o formats. by Tim Peters · 25 years ago
  86. d1ba443 This patch adds a new Python C API called PyString_AsStringAndSize() by Marc-André Lemburg · 25 years ago
  87. 9e8181b Make better use of GNU Pth -- patch by Andy Dustman. by Guido van Rossum · 25 years ago
  88. c7247ce Add typedef PyOS_sighandler_t and prototypes for PyOS_getsig() and by Guido van Rossum · 25 years ago
  89. 682c25a RET_SAVE references should be Py_BLOCK_THREADS references by Skip Montanaro · 25 years ago
  90. 4826a89 Close SF bug 110826: a complaint about the way Python #define'd NULL. by Tim Peters · 25 years ago
  91. 1a2eefd A #define didn't start in column 1. Closes SF bug 113888. by Tim Peters · 25 years ago
  92. e2bf7e6 Add missing Py_PROTO macro for backward compatibility with old extensions by Vladimir Marangozov · 25 years ago
  93. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 25 years ago
  94. b709df3 refactor __del__ exception handler into PyErr_WriteUnraisable by Jeremy Hylton · 25 years ago
  95. 51de690 Supply missing prototypes for new Py_{Get,Set}RecursionLimit; fixes compiler wngs; by Tim Peters · 25 years ago
  96. 926f1d6 Added prototype for PyToken_ThreeChars(), to remove compiler warning by Fred Drake · 25 years ago
  97. 8ebe84d The new PyEval_ReInitThreads wasn't declared in ceval.h; compiler wngs. by Tim Peters · 25 years ago
  98. 0df002c Add three new APIs: PyRun_AnyFileEx(), PyRun_SimpleFileEx(), by Guido van Rossum · 25 years ago
  99. 2f15b25 implements PyOS_CheckStack for Windows and MSVC. this fixes a by Fredrik Lundh · 25 years ago
  100. 6d63adf Improve the exceptions raised by PyErr_BadInternalCall(); adding the by Fred Drake · 25 years ago