1. d403c45 Fix arigo's funky LOAD_NAME bug: implicit globals inside classes have by Neil Schemenauer · 20 years ago
  2. ebc3457 Revert previous checkin: by Neal Norwitz · 20 years ago
  3. ab541bb Revert change, func_name of lambda's is back to <lambda>. by Neil Schemenauer · 20 years ago
  4. b2308bb Fix bug: by Michael W. Hudson · 20 years ago
  5. 37c0844 Fix SF bug #1167751, Argument genexp corner case by Neal Norwitz · 20 years ago
  6. f21c8ed Add comment lost from AST merge by Neal Norwitz · 20 years ago
  7. 3e0055f Merge ast-branch to head by Jeremy Hylton · 20 years ago
  8. bc2a62f Disable some tests in anticipation of merging ast-branch to the head by Jeremy Hylton · 20 years ago
  9. b0e32e2 Fix SF bug # 1330039, patch # 1331635 from Lars Gustaebel (tarfile maintainer) by Neal Norwitz · 20 years ago
  10. 4b0f20d Teach unquote() to handle unicode inputs by Raymond Hettinger · 20 years ago
  11. c252c59 Fix unit test failure -- the output received from Python can be empty, by Guido van Rossum · 20 years ago
  12. d1c1e10 Part of SF patch #1313939: Speedup charmap decoding by extending by Walter Dörwald · 20 years ago
  13. cc9a951 SF #1313496: bisect C replacement doesn't accept named args by Raymond Hettinger · 20 years ago
  14. 11bd119 SF bug #887946, segfault if redirecting directory by Neal Norwitz · 20 years ago
  15. 40d3781 - Fix segfault with invalid coding. by Neal Norwitz · 20 years ago
  16. 484d9a4 Patch #1309009, Fix segfault in pyexpat when the XML document is by Neal Norwitz · 20 years ago
  17. dd5c023 some more fixes and tests for inspect.getsource(), triggered by crashes by Armin Rigo · 20 years ago
  18. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 20 years ago
  19. 10402a3 Patches #1298449 and #1298499: Add some missing checks for error by Michael W. Hudson · 20 years ago
  20. 19e11c8 MacOSX 10.4 apparently does not allow the creation time to be set to later by Jack Jansen · 20 years ago
  21. f879024 test and fix for buggy handling of exceptions raised by C functions, by Armin Rigo · 20 years ago
  22. f8948ca skip _locale test if OS X < 10.4 by Skip Montanaro · 20 years ago
  23. 9e28107 Test case for latest complexobject fix. by Georg Brandl · 20 years ago
  24. 9bda1d6 No longer ignore exceptions raised by comparisons during key lookup. by Raymond Hettinger · 20 years ago
  25. a783d06 Clear out the regex cache when the TimeRE cache is invalidated by a locale by Brett Cannon · 20 years ago
  26. 8ee3e5a - Changes donated by Elemental Security to make it work on AIX 5.3 by Guido van Rossum · 20 years ago
  27. 6fa0c5a Bug #1202493: Fixing SRE parser to handle '{}' as perl does, rather than by Gustavo Niemeyer · 20 years ago
  28. 2bdec7b Revert 1.170. Add tests. by Raymond Hettinger · 20 years ago
  29. a47d1c0 SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complain by Walter Dörwald · 20 years ago
  30. 5dbdc59 Patch #1168594: set sizes of non-regular files to zero. Fixes #1167128. by Martin v. Löwis · 20 years ago
  31. 9e34c04 Whitespace normalization (via reindent.py). by Tim Peters · 20 years ago
  32. e8889c5 testSeekBackwardsFromEnd(): Repair obvious syntax error. by Tim Peters · 20 years ago
  33. d603c04 Add list() around xreadlines() by Georg Brandl · 20 years ago
  34. 62fe585 *** empty log message *** by Georg Brandl · 20 years ago
  35. 5a650a2 patch [ 810023 ] Fix for off-by-one bug in urllib.URLopener.retrieve by Georg Brandl · 20 years ago
  36. d2e3ba7 patch [ 756021 ] Allow socket.inet_aton("255.255.255.255") on Windows by Georg Brandl · 20 years ago
  37. 905a01a bug [ 1262320 ] minidom.py alternate newl support is broken by Georg Brandl · 20 years ago
  38. 8b59514 Make IDNA return an empty string when the input is empty. Fixes #1163178. by Martin v. Löwis · 20 years ago
  39. 8246c43 Correct test suite for #848017. by Georg Brandl · 20 years ago
  40. e1b13d2 Bug #735248: Fix urllib2.parse_http_list. by Georg Brandl · 20 years ago
  41. be3856d patch [ 1141428 ] more __contains__ tests by Georg Brandl · 20 years ago
  42. 52715f6 [ 1113421 ] New tutorial tests in test_generators.py by Georg Brandl · 20 years ago
  43. 38387b8 bug [ 728515 ] mmap's resize method resizes the file in win32 but not unix by Georg Brandl · 20 years ago
  44. f21a5f7 [ sf.net patch # 1121611 ] by Gregory P. Smith · 20 years ago
  45. 33a5f2a Fix BZ2File.(x)readlines() for files without a newline. by Georg Brandl · 20 years ago
  46. a710b33 SF bug #1242657: list(obj) can swallow KeyboardInterrupt by Raymond Hettinger · 20 years ago
  47. c47e01d Numerous fix-ups to C API and docs. Added tests for C API. by Raymond Hettinger · 20 years ago
  48. e2eca0b Port from the Python 2.4 branch, patches for SF bug # 900092, by Barry Warsaw · 20 years ago
  49. 038ca2a Teach the sets module to correctly compute s-=s and s^=s as the empty set. by Raymond Hettinger · 20 years ago
  50. 97979dd * Fix SF #1257731. Make __contains__(), remove(), and discard() only do by Raymond Hettinger · 20 years ago
  51. cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 20 years ago
  52. c991db2 * Add short-circuit code for in-place operations with self (such as by Raymond Hettinger · 20 years ago
  53. e9fe7e0 Whitespace normalization (ran reindent.py over the whole tree). by Tim Peters · 20 years ago
  54. 4e41a4b Disable a few other tests, that can't work if Python is compiled without by Walter Dörwald · 20 years ago
  55. 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 20 years ago
  56. d794666 * Improve code for the empty frozenset singleton: by Raymond Hettinger · 20 years ago
  57. 50747fc add support for svn: and svn+ssh: URL schemes to urlparse by Fred Drake · 20 years ago
  58. 6eea789 Disable encoding/decoding test, if unicode is disabled. by Walter Dörwald · 20 years ago
  59. 7eb4b7d Fix all wrong instances of "it's". by Georg Brandl · 20 years ago
  60. c9878e1 Make attributes and local variables in the StreamReader str objects instead by Walter Dörwald · 20 years ago
  61. f5f32b4 Whitespace normalization. by Tim Peters · 20 years ago
  62. 4e42281 Add support for FreeBSD 7. by Hye-Shik Chang · 20 years ago
  63. 5c5fe2f RFE [ 1216944 ] Add Error Code Dictionary to urllib2 by Georg Brandl · 20 years ago
  64. 0edc7a0 Fix: by Michael W. Hudson · 20 years ago
  65. 82cb9a2 Add test for hash commutativity. by Raymond Hettinger · 20 years ago
  66. 9a65d58 Add doctest for examples in libweakref.tex to test_weakref. by Georg Brandl · 20 years ago
  67. 3296e69 SF bug #1224347: int/long unification and hex() by Raymond Hettinger · 20 years ago
  68. 22bfdab Adapt output file to new Cookie JS output. by Georg Brandl · 20 years ago
  69. ecf93c7 Fix test cases for doctest. by Georg Brandl · 20 years ago
  70. da99d1c SF bug #1224621: tokenize module does not detect inconsistent dedents by Raymond Hettinger · 20 years ago
  71. 7390942 test_asynchat is no longer expected to produce output. by Michael W. Hudson · 20 years ago
  72. bb999b5 SF patch #1200018: Restore GC support to set objects by Raymond Hettinger · 20 years ago
  73. 9847000 Add tests for posix O_SHLOCK & O_EXLOCK. Missed checking this in with by Skip Montanaro · 20 years ago
  74. d1badac [Patch #1005892 from Alexandr Zamaraev] Fix two errors in the curses test suite by Andrew M. Kuchling · 20 years ago
  75. 1a72852 yet another cache to clear when leak hunting. by Michael W. Hudson · 20 years ago
  76. a002159 Port test_long.py to unittest. by Walter Dörwald · 20 years ago
  77. f2ca5af Fix bug by Michael W. Hudson · 20 years ago
  78. 68c0453 Add untokenize() function to allow full round-trip tokenization. by Raymond Hettinger · 20 years ago
  79. 5ac2534 Convert asynchat test to unittest; exercise the client using a numeric value as the terminator by Andrew M. Kuchling · 20 years ago
  80. 01cb47b [Bug #1074261, patch #1074381] Restrict the size of chunks read from the file in order to avoid overflow or huge memory consumption. Patch by Mark Eichin by Andrew M. Kuchling · 20 years ago
  81. a6f68e1 Convert gzip test suite to use unittest by Andrew M. Kuchling · 20 years ago
  82. 6e57c2a [Patch #1171487, bug #1170331] Fix error in base64.b32decode when encoding a single null byte; test a null byte in all encodings to be sure it works by Andrew M. Kuchling · 20 years ago
  83. 95a2a4e Tools/scripts/reindent.py _is_ your friend by Anthony Baxter · 20 years ago
  84. ecdad85 [Bug #1172763] dumbdbm uses eval() on lines, so it chokes if there's an extra \r on the end of a line; fixed by stripping off trailing whitespace. by Andrew M. Kuchling · 20 years ago
  85. 61aa630 Fix missing assignments of marshal.load() values. Closes #1214662. by Skip Montanaro · 20 years ago
  86. 5d36a55 Whitespace normalization. by Tim Peters · 20 years ago
  87. 6b95f1d Bug #1194181: bz2.BZ2File didn't handle mode 'U' correctly. by Georg Brandl · 20 years ago
  88. 451ae18 [ 1197218 ] test_locale fix on modern linux by Anthony Baxter · 20 years ago
  89. df88846 This is my patch: by Michael W. Hudson · 20 years ago
  90. 268e61c Bug #1213894: os.path.realpath didn't resolve symlinks that were the first by Georg Brandl · 20 years ago
  91. e7fa1af M-x untabify by Michael W. Hudson · 20 years ago
  92. 3554cad [Bug #1177831] Exercise (?(id)yes|no) for a group other than the first one by Andrew M. Kuchling · 20 years ago
  93. f369470 Fix compiler.ast.flatten function so that it works on lists. by Neil Schemenauer · 20 years ago
  94. ba283e2 This is my patch: by Michael W. Hudson · 20 years ago
  95. ff52286 Fix test_site to not call open('...', 'wU'), as that now raises an error. by Michael W. Hudson · 20 years ago
  96. bbf12ba Disallow opening files with modes 'aU' or 'wU' as specified by PEP by Skip Montanaro · 20 years ago
  97. 57179fe This test relied on short-circuiting details of dictobject.py to avoid by Armin Rigo · 20 years ago
  98. 174dd22 Add better datetime support to xmlrpclib module. Closes patch #1120353. by Skip Montanaro · 20 years ago
  99. abb103b Don't use 'is not' to compare strings. (spotted by reading pypy-svn :) by Michael W. Hudson · 20 years ago
  100. 53e9a8b Fix error in a docstring where a single quote started the docstring but triple by Brett Cannon · 20 years ago