1. 2bbc697 Fix a number of small issues; this closes SF bug #411063. by Fred Drake · 23 years ago
  2. 1417144 Based on info from Jens@digicool.com, add 'darwin1' to the list of by Guido van Rossum · 23 years ago
  3. 2b73fe9 Updated for 2.1b2 distribution. by Jack Jansen · 23 years ago
  4. 764dad5 Arghh. Fix typo. by Martin v. Löwis · 23 years ago
  5. ff4e62d Added a note about BBPy.lm. by Jack Jansen · 23 years ago
  6. 64f9f71 Added a note about the new (since 2.0) OSA architecture. by Jack Jansen · 23 years ago
  7. 3f4c173 Oops, ISO translation was off. Fixed. by Jack Jansen · 23 years ago
  8. 0d01787 Add Robin Thomas (author of the slice() comparability hack). by Guido van Rossum · 23 years ago
  9. c9494ac Use Guido's trick for always extracting the version number from a by Martin v. Löwis · 23 years ago
  10. f78a81b Fix some reloading problems (still more work needed). by Ka-Ping Yee · 23 years ago
  11. 996c5c1 Disable fused-add-mul instructions. They give a nonstandard result for some things that test_coercion complains about. The added performance is probably minimal for Python anyway. by Jack Jansen · 23 years ago
  12. 673a4fd Bug fix: compile() called from a nested-scopes-enable Python was not by Jeremy Hylton · 23 years ago
  13. b4ce430 Turn SyntasWarning into SyntaxError for all code entered interactively. by Guido van Rossum · 23 years ago
  14. 55a0034 Michael Hudson <mwh21@cam.ac.uk>: Add many more constants for some systems. by Fred Drake · 23 years ago
  15. 21e036c Add a note that the "kfm" controller supports "konqueror" as well as the by Fred Drake · 23 years ago
  16. 3d9091e Itamar Shtull-Trauring <itamar@maxnm.com>: by Fred Drake · 23 years ago
  17. fc31f26 Update auto-detection for Konqueror to include KDE 2 -- the kfm command is by Fred Drake · 23 years ago
  18. 4240bc5 Note missing explanation by Andrew M. Kuchling · 23 years ago
  19. c658236 Fixed some access paths. by Jack Jansen · 23 years ago
  20. ae60534 Fixed ref count bug. Patch #411191. Found by Walter Dörwald. by Marc-André Lemburg · 23 years ago
  21. 4113b13 get_version_string(): New function -- returns a Python string object that by Fred Drake · 23 years ago
  22. c8da0f9 Document use_rawinput. (Although now that I think more about it, a by Guido van Rossum · 23 years ago
  23. 1ad37bb This commit was manufactured by cvs2svn to create tag 'r21b2'. by cvs2svn · 23 years ago
  24. 2108bc7 main(): Application of SF patch #405851, which allows this test to be by Barry Warsaw · 23 years ago
  25. 66f0961 pydoc changed overnight in such a way that it no longer worked from the by Tim Peters · 23 years ago
  26. 9dee48f Fix a memory leak -- there's no need to INCREF() the result of by Guido van Rossum · 23 years ago
  27. 559f668 In Jython, `@' is not allowed in module names. Extend the TESTFN test by Barry Warsaw · 23 years ago
  28. 66e8e86 Finishing touch to Ping's changes. This is a patch that Ping sent me by Guido van Rossum · 23 years ago
  29. 62d2488 Two minor changes for better Jython compatibility. Finn Bock says: by Barry Warsaw · 23 years ago
  30. 27dca06 Update Mac OS X platform notes. by Fred Drake · 23 years ago
  31. 8f6df46 Strengthen the constraints on calling PyObject_GC_Fini(). by Fred Drake · 23 years ago
  32. 6870bba Make socket.getservbyname test optional on socket module having that by Barry Warsaw · 23 years ago
  33. 6a12d8d call_sys_exitfunc(): Remove unused variable f. by Fred Drake · 23 years ago
  34. 88b0884 Change rfc822_escape() to ensure there's a consistent amount of whitespace by Andrew M. Kuchling · 23 years ago
  35. aa90adc Add nested scopes spec to appendix. by Jeremy Hylton · 23 years ago
  36. 7190247 Remove the annoying __version__ definitions. by Fred Drake · 23 years ago
  37. 3e8f921 Lots of small changes to make this work with the Python DOM bindings by Fred Drake · 23 years ago
  38. 7519e7a setlocale(): In _locale-missing compatibility function, string by Barry Warsaw · 23 years ago
  39. 2262a80 Pick up the "encode" function from esistools instead of defining our own by Fred Drake · 23 years ago
  40. a9d0450 No quotes around the "future" in the first use of the term "future statement". by Fred Drake · 23 years ago
  41. f6c115f Re-write to no longer depend on an old version of PyXML. This now by Fred Drake · 23 years ago
  42. a4699a7 Pick the "escape" function from the standard library instead of from PyXML. by Fred Drake · 23 years ago
  43. ce19496 Add conversions for more of the markup -- not all of this was around when by Fred Drake · 23 years ago
  44. 7621fa9 Add entry for the futures appendix in the reference manual. by Fred Drake · 23 years ago
  45. 557c1ae Include the futures appendix. by Fred Drake · 23 years ago
  46. 39778b7 Revise the markup so that this formats and uses markup consistently with by Fred Drake · 23 years ago
  47. dfdac1a Several changes for Jython portability. This closes SF patch by Barry Warsaw · 23 years ago
  48. 101651c flesh out __all__ by Jeremy Hylton · 23 years ago
  49. 26fabb0 Allow sys.excepthook and sys.exitfunc to quietly exit with a sys.exit(). by Ka-Ping Yee · 23 years ago
  50. a9c6c8d Extend isclass() to work for extension classes (by looking for __bases__). by Ka-Ping Yee · 23 years ago
  51. 324cc6e Add some initial text for the appendix on future statements and nested scopes. by Jeremy Hylton · 23 years ago
  52. 2c84fc8 Note that assignments to __debug__ are illegal by Jeremy Hylton · 23 years ago
  53. f626db7 News items for my recent checkins by Jeremy Hylton · 23 years ago
  54. fde8a86 Script for starting pydoc with a GUI in Windows. by Ka-Ping Yee · 23 years ago
  55. 897b821 Make it illegal to assign to __debug__ as per Guido's request. by Jeremy Hylton · 23 years ago
  56. e280c06 Browser compatibility fixes. by Ka-Ping Yee · 23 years ago
  57. e702481 Revert to ver 1.22, which was the version before the nested scopes by Jeremy Hylton · 23 years ago
  58. 987ec90 Small formatting improvements. by Ka-Ping Yee · 23 years ago
  59. 3bda879 Show inherited methods, with hyperlinks to the base class they came from. by Ka-Ping Yee · 23 years ago
  60. 16a0b17 Bump version number. by Fred Drake · 23 years ago
  61. a5d7b74 Revert the 1.8 patch, since it's implicated in nasty blowups (see Pyhon-Dev). by Tim Peters · 23 years ago
  62. 28c62bb Provide a StopTokenizing exception for conveniently exiting the loop. by Ka-Ping Yee · 23 years ago
  63. ce7298a Explain the difference between NL and NEWLINE. by Ka-Ping Yee · 23 years ago
  64. c608fb6 Give a slightly better explanation of excepthook. by Ka-Ping Yee · 23 years ago
  65. f170d7f Don't have trace() skip the top frame; return them all. by Ka-Ping Yee · 23 years ago
  66. 6526bf8 When creating an attribute node using createAttribute() or by Fred Drake · 23 years ago
  67. 5e0dfac Update to the most recent weakref changes. by Fred Drake · 23 years ago
  68. b0fefc5 Convert the weakref test suite to PyUNIT, and add tests that exercise weak by Fred Drake · 23 years ago
  69. 84a5934 When the regression test is run in verbose mode, make the PyUNIT-based by Fred Drake · 23 years ago
  70. db81e8d Add support for weak references to the function and method types. by Fred Drake · 23 years ago
  71. 6a1c87d Add the necessary field for weak reference support to the function and by Fred Drake · 23 years ago
  72. 4131830 Fix memory leak with SyntaxError. (The DECREF was originally hidden by Guido van Rossum · 23 years ago
  73. ac1abe0 Add a paragraph about obmalloc turning up bugs in extension modules by Andrew M. Kuchling · 23 years ago
  74. fe0d79f Add Jeremy's compiler to the Windows install. by Tim Peters · 23 years ago
  75. ef85cc8 Add section for PEP 241 Add PyUnit and sys.excepthook by Andrew M. Kuchling · 23 years ago
  76. b5c5132 Add sys.excepthook. by Ka-Ping Yee · 23 years ago
  77. 37f7b38 Fixes for various issues reported and discovered since Python 9: by Ka-Ping Yee · 23 years ago
  78. 015415e SRE 2.1b2: increase the chances that the sre test works on other machines... by Fredrik Lundh · 23 years ago
  79. 816e149 First cut at a high-level symbol table interface by Jeremy Hylton · 23 years ago
  80. 987f133 SRE 2.1b2: forgot to update one output file (sorry, Fred!) by Fredrik Lundh · 23 years ago
  81. 8bf395f add DEF_BOUND constant by Jeremy Hylton · 23 years ago
  82. 14b90a4 Strip \r as trailing whitespace as part of soft line endings. by Guido van Rossum · 23 years ago
  83. 8652522 Update the Tix version (long overdue :-). by Guido van Rossum · 23 years ago
  84. 3f69f21 Add a wrapper function for ssl() on Windows. Inspired by SF patch by Guido van Rossum · 23 years ago
  85. bfb9184 This is SF patch #405952, by Anthony Baxter: by Guido van Rossum · 23 years ago
  86. 4e262a9 A small change to the C API for weakly-referencable types: Such types by Fred Drake · 23 years ago
  87. 82f1480 Inform the cycle-detector that the a weakref object no longer needs to be by Fred Drake · 23 years ago
  88. 2c77355 Make cPickle use the recently-added PyInstance_NewRaw() API to create by Fred Drake · 23 years ago
  89. 53f5968 Make this IDLE version 0.8. (We have to skip 0.7 because that was a by Guido van Rossum · 23 years ago
  90. 3cc1250 Don't use __debug__ as if it were some module global. Use DEBUG instead. by Guido van Rossum · 23 years ago
  91. 6909642 Bump the version number. by Fred Drake · 23 years ago
  92. 15e07f4 Update to the current state of the universe. by Fred Drake · 23 years ago
  93. e28d8ae Be more clear about the specific rules for supporting the cyclic GC in an by Fred Drake · 23 years ago
  94. f5db48e Fix typo in history. by Thomas Wouters · 23 years ago
  95. 17741be SRE 2.1b1: don't do unicode tests under 1.5.2, or on unicode strings/patterns. by Fredrik Lundh · 23 years ago
  96. b25e1ad sre 2.1b2 update: by Fredrik Lundh · 23 years ago
  97. 8e9972c Added news items for the Distutils by Andrew M. Kuchling · 23 years ago
  98. 3225c1f Updated history. Incorporated 1.6.1 license. by Guido van Rossum · 23 years ago
  99. b374dd3 Synchronize with 1.6 of PyXML: by Martin v. Löwis · 23 years ago
  100. ffb963c Use the get_contact*() accessors instead of get_maintainer*() by Andrew M. Kuchling · 23 years ago