1. 5c170fd Fix some missing checks after PyTuple_New, PyList_New, PyDict_New by Georg Brandl · 18 years ago
  2. a5a0704 Remove the lib-old modules from Doc/lib/libundoc.tex. by Georg Brandl · 18 years ago
  3. 7785868 Fix bug 1441408 where a double colon didn't trigger extended slice semantics (applies patch 1452332) by Nick Coghlan · 18 years ago
  4. db815ab More \exception fixes. by Georg Brandl · 18 years ago
  5. da37604 Add two items by Andrew M. Kuchling · 18 years ago
  6. a062270 Markup fix by Andrew M. Kuchling · 18 years ago
  7. b03cb60 Merge changes from the upstream version: by Thomas Heller · 18 years ago
  8. f4b0660 Remove mention of lib-old, and list more deleted modules by Andrew M. Kuchling · 18 years ago
  9. 01e3d26 Add some items by Andrew M. Kuchling · 18 years ago
  10. c72f501 as is on the road to keyword-hood, use a different var name. by Neal Norwitz · 18 years ago
  11. d5f8ec2 Oops, copied the wrong code from keeprefs. Get the right code by Neal Norwitz · 18 years ago
  12. 770a800 Update/expand on comments about leaking tests. by Neal Norwitz · 18 years ago
  13. ddda855 Ignore ctypes leaks, but add a test case so we do not forget. by Neal Norwitz · 18 years ago
  14. 8749316 Try to find a host that responds slower from python.org so this test does not fail on macteagle (G4 OSX.4 in buildbot) by Neal Norwitz · 18 years ago
  15. ae1d0c9 Introduced symbol PY_FORMAT_SIZE_T. See the new comments by Tim Peters · 18 years ago
  16. d53850a Fix wrong argument format in PyCodec_IncrementalEncoder() and by Walter Dörwald · 18 years ago
  17. 23e4086 Fix a test that fails when libGL.so and libGLU.so are not installed (on posix systems). by Thomas Heller · 18 years ago
  18. 0c6b0e9 Fix a leak that would happen under error conditions (found by Coverty). by Thomas Heller · 18 years ago
  19. aa47570 Use int 0 as default defval for LCID if nothing has been supplied. by Thomas Heller · 18 years ago
  20. b216761 Fix compiler warning. by Thomas Heller · 18 years ago
  21. 4c9dfc8 Fixes from Neal Norwitz, plus other small fixes. by Thomas Heller · 18 years ago
  22. 1275516 Rewrite the AllocFunctionCallback function for better error handling. by Thomas Heller · 18 years ago
  23. d71afb2 Set eol-style to native. by Tim Peters · 18 years ago
  24. f8cf13e Update test_winsound to check for a configured sound card (using a VBScript by Trent Mick · 18 years ago
  25. 4fe4ed2 Make mktuple consistent with mklist to get rid of Coverity warnings. Also use macro version of SetItem since we know everything is setup. by Neal Norwitz · 18 years ago
  26. 6bed1c1 Add some versionadded info to new incremental codec docs and fix doco nits. by Neal Norwitz · 18 years ago
  27. 922ff4a Don't delete non-autogenerated source files when cleaning up. by Thomas Heller · 18 years ago
  28. c4bd28c Remove some more references to regex that I missed. by Neal Norwitz · 18 years ago
  29. 10be10c Remove regsub, reconvert, regex, regex_syntax and everything under lib-old. by Neal Norwitz · 18 years ago
  30. efbeaef Add a news entry about the sre/re swap. by Neal Norwitz · 18 years ago
  31. f0e2c07 Spel compatibility write. by Neal Norwitz · 18 years ago
  32. f521de6 Add back an sre.py that should be backwards compatible except for the warning. by Neal Norwitz · 18 years ago
  33. 94a9c09 Rename sre.py -> re.py by Neal Norwitz · 18 years ago
  34. 559e88b Remove re.py, in order to rename sre.py -> re.py (svn seems to require 2 steps). by Neal Norwitz · 18 years ago
  35. 04d1513 The pre module has been gone for a while. Need to go through and find other modules that no longer exists, since errors are silently ignored. by Neal Norwitz · 18 years ago
  36. 1a3b248 Oops! Use python_d.exe _before_ it's destroyed :-) by Tim Peters · 18 years ago
  37. 378832c Change the Windows buildbot "clean" step to remove stale .pyc files. by Tim Peters · 18 years ago
  38. cf79aac Merge the tim-obmalloc branch to the trunk. by Tim Peters · 18 years ago
  39. f8480a7 Instead of relative imports, use (implicitly) absolute ones. by Guido van Rossum · 18 years ago
  40. 067db48 Document the other change from patch #1359365. by Walter Dörwald · 18 years ago
  41. 197e832 SF patch #1359365: cStringIO.StringIO.isatty() will raise a ValueError by Walter Dörwald · 18 years ago
  42. 9998f78 Backport from upstream version: compatibility with older Python versions. by Thomas Heller · 18 years ago
  43. f99b816 Whitespace normalization. by Tim Peters · 18 years ago
  44. 13ed60b Fix typo. by Walter Dörwald · 18 years ago
  45. 598f8a0 Don't try to explicitly set path in runpy package tests (tests were broken on Windows) by Nick Coghlan · 18 years ago
  46. 586b83c Don't let cleanup errors mask real errors in the runpy tests by Nick Coghlan · 18 years ago
  47. a2173a1 Catch situations where currentframe() returns None. See SF patch #1447410, this is a different implementation. by Vinay Sajip · 18 years ago
  48. 5424ad8 Make test_runpy close all references to test modules before trying to delete the underlying files by Nick Coghlan · 18 years ago
  49. 21d3a7c Add section by Andrew M. Kuchling · 18 years ago
  50. abb02e5 Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclass by Walter Dörwald · 18 years ago
  51. e2ebb2d Implement PEP 338 which has been marked as accepted by GvR by Nick Coghlan · 18 years ago
  52. 8ea61f1 Revert rev 43041, which introduced the "z" format qualifier by Tim Peters · 18 years ago
  53. ab8aeba CField_repr(): PyString_FromFormat() understands the by Tim Peters · 18 years ago
  54. d77eb1f In 'make clean', delete some files that are generated by the _ctypes/libffi by Thomas Heller · 18 years ago
  55. 0af5d93 SF patch #1359365: file and cStringIO raise a ValueError when next() is called by Walter Dörwald · 18 years ago
  56. 4a53dad Move test code out of xxmodule and into _testcapimodule.c where it belongs. by Neal Norwitz · 18 years ago
  57. 87de069 Use relative imports in a few places where I noticed the need. by Guido van Rossum · 18 years ago
  58. 903d846 Renamed test_hashlib_speed.py to time_hashlib.py. by Tim Peters · 18 years ago
  59. 915d777 Try to avoid many of the compiler warnings when compiling libffi by by Thomas Heller · 18 years ago
  60. ab906a5 Cast an Py_ssize_t to int, to avoid a compiler warning. by Thomas Heller · 18 years ago
  61. 6ea6e20 For x86 Release and Debug builds, remove the /Wp64 compiler flag, it by Thomas Heller · 18 years ago
  62. fe8f862 Integrate patch from Neal Norwitz. He writes: by Thomas Heller · 18 years ago
  63. cb35b95 Teach the compiler module about augmented assignment to tuple subscripts by Nick Coghlan · 18 years ago
  64. 7580146 Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and by Neal Norwitz · 18 years ago
  65. 3daf758 Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExact by Georg Brandl · 18 years ago
  66. d364a07 Added logThreads and logProcesses to allow conditional omission of logging this information by Vinay Sajip · 18 years ago
  67. 6da8ceb It's necessary to do a Debug build of the bsddb project too. by Tim Peters · 18 years ago
  68. 7ccbb07 Minor changes. by Tim Peters · 18 years ago
  69. 32d996f Trimmed trailing whitespace. by Tim Peters · 18 years ago
  70. b091241 Fix build process of bsddb for IA64 and AMD64. by Martin v. Löwis · 18 years ago
  71. fcddd29 Initialize VS environment in external.bat as well. by Martin v. Löwis · 18 years ago
  72. f6f7925 Update to bsddb 4.4.20. by Martin v. Löwis · 18 years ago
  73. eadee9a Fix SF bug #1448804 and ad a test to ensure that all subscript operations continue to be handled correctly by Nick Coghlan · 18 years ago
  74. bfa8bd7 Let the buildbot make a single pass in the test suite only. by Martin v. Löwis · 18 years ago
  75. 14c1cf8 Update to bzip2 1.0.3 Make buildbot slaves automatically fetch bzip2 1.0.3. by Martin v. Löwis · 18 years ago
  76. a022789 Plug some refcount leaks when tests are run repeatedly. by Thomas Heller · 18 years ago
  77. abb903f Bug #1448490: Fix a bug that ISO-2022 codecs could not handle by Hye-Shik Chang · 18 years ago
  78. 6058aa4 Remove the slightly broken test_leaks.py. by Thomas Heller · 18 years ago
  79. b138677 Adding the /useenv means that one's PATH actually gets through. This is by Trent Mick · 18 years ago
  80. 44ed4db merged with cElementTree development trunk (1.0.6 snapshot): by Fredrik Lundh · 18 years ago
  81. d39ab5b Move buildbot scripts to Tools/buildbot. by Martin v. Löwis · 18 years ago
  82. 539056a Added brief comment. by Tim Peters · 18 years ago
  83. 1777ada Added brief comments. by Tim Peters · 18 years ago
  84. a96affe - Reindent a confusingly indented piece of code (no intended code changes by Thomas Wouters · 18 years ago
  85. 318af47 Plug the last 657 referenceleaks in test_bsddb3: a circular reference by Thomas Wouters · 18 years ago
  86. b2820ae Fix another leak in bsddb, and avoid use of uninitialized value -- funny how by Thomas Wouters · 18 years ago
  87. 9fe582c Add buildbot test script. by Martin v. Löwis · 18 years ago
  88. 3f2723d Give the _ssl project a harmless command to perform by Tim Peters · 18 years ago
  89. 43179c8 Add changelog entry. by Martin v. Löwis · 18 years ago
  90. c350912 Adjust CJK Ideograph range to Unicode 4.1. by Martin v. Löwis · 18 years ago
  91. 88ca467 Whitespace normalization. by Tim Peters · 18 years ago
  92. 922dd7d When the new -w option (yay! great idea) reruns a by Tim Peters · 18 years ago
  93. 04824ce Add regrtest -w option. by Martin v. Löwis · 18 years ago
  94. f688cc5 Unicode database updated; use SVN instead of CVS by Andrew M. Kuchling · 18 years ago
  95. 1a4a640 Add AMD64 and Itanium configurationgs to ctypes; by Martin v. Löwis · 18 years ago
  96. a09655e Add ctypes. by Martin v. Löwis · 18 years ago
  97. 4196296 Update test data to 4.1; disable PRI #29 for now. by Martin v. Löwis · 18 years ago
  98. 0e2f9b2 Fix refcounting bug. by Martin v. Löwis · 18 years ago
  99. 5bd7c02 Avoid forward-declaring the methods array. by Martin v. Löwis · 18 years ago
  100. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 18 years ago