1. 76467ba Bug fixes large and small for tokenize. by Jeremy Hylton · 18 years ago
  2. 20362a8 x**2 should about equal x*x (including for a float x such that the result is by Alex Martelli · 18 years ago
  3. 29bef0b Baby steps towards better tests for tokenize by Jeremy Hylton · 18 years ago
  4. 60e96f6 Expose column offset information in parse trees. by Jeremy Hylton · 18 years ago
  5. 17753ec Patch #1541585: fix buffer overrun when performing repr() on by Neal Norwitz · 18 years ago
  6. 4f096d9 Patch #1542451: disallow continue anywhere under a finally by Neal Norwitz · 18 years ago
  7. 8a51939 Fix bug #1543303, tarfile adds padding that breaks gunzip. Patch # 1543897. by Neal Norwitz · 18 years ago
  8. 8c036cc Patch #1542948: fix urllib2 header casing issue. With new test. by Georg Brandl · 18 years ago
  9. 2eb8c4f Bug #1541863: uuid.uuid1 failed to generate unique identifiers by Martin v. Löwis · 18 years ago
  10. 4c6b0d5 Fix a bug in the ``compiler`` package that caused invalid code to be by Neil Schemenauer · 18 years ago
  11. dc075b9 SF#1534630 by Fredrik Lundh · 18 years ago
  12. b1cb56a Update code and tests to support the 'bytes_le' attribute (for by Ka-Ping Yee · 18 years ago
  13. 271a868 Subclasses of int/long are allowed to define an __index__. by Neal Norwitz · 18 years ago
  14. b476fdf Fix the test for SocketServer so it should pass on cygwin and not fail by Neal Norwitz · 18 years ago
  15. c02c1c8 Whitespace normalization. by Tim Peters · 18 years ago
  16. 85fec59 Add an additional test: BZ2File write methods should raise IOError by Georg Brandl · 18 years ago
  17. 3335a7a Patch #1535500: fix segfault in BZ2File.writelines and make sure it by Georg Brandl · 18 years ago
  18. 2463f8f Make tabnanny recognize IndentationErrors raised by tokenize. by Georg Brandl · 18 years ago
  19. 040f76b Slightly revised version of patch #1538956: by Marc-André Lemburg · 18 years ago
  20. 56423e5 Fix segfault when doing string formatting on subclasses of long if by Neal Norwitz · 18 years ago
  21. 1872b1c Fix a couple of bugs exposed by the new __index__ code. The 64-bit buildbots by Neal Norwitz · 18 years ago
  22. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  23. f3e3042 Repair logging test spew caused by rev. 51206. by Georg Brandl · 18 years ago
  24. 953c189 Ah, fudge. One of the prints here actually "shouldn't be" by Tim Peters · 18 years ago
  25. 1742f33 test_signal: Signal handling on the Tru64 buildbot by Tim Peters · 18 years ago
  26. 421c131 Whoops, how did that get in there. :-) Revert all the parts of 51227 that were not supposed to go it. Only Modules/_ctypes/cfields.c was supposed to be changed by Neal Norwitz · 18 years ago
  27. 6b4953f Check returned pointer is valid. Klocwork #233 by Neal Norwitz · 18 years ago
  28. 003c9e2 Fix the failures on cygwin (2006-08-10 fixed the actual locking issue). by Neal Norwitz · 18 years ago
  29. 8b8c59c force_test_exit(): This has been completely ineffective by Tim Peters · 18 years ago
  30. 0857477 test_PyThreadState_SetAsyncExc(): This is failing on some by Tim Peters · 18 years ago
  31. b7ad1eb Whitespace normalization broke test_cgi, because a line by Tim Peters · 18 years ago
  32. 0d9ca9f Whitespace normalization. by Tim Peters · 18 years ago
  33. 4643c2f Followup to bug #1069160. by Tim Peters · 18 years ago
  34. 9568b73 Chris McDonough's patch to defend against certain DoS attacks on FieldStorage. by Guido van Rossum · 18 years ago
  35. b2dd1a3 test_copytree_simple(): This was leaving behind two new temp by Tim Peters · 18 years ago
  36. 97ff047 Concatenation on a long string breaks (SF #1526585). by Armin Rigo · 18 years ago
  37. 51fc8c4 Fix and test for an infinite C recursion. by Armin Rigo · 18 years ago
  38. ab2f8f7 __hash__ may now return long int; the final hash by Martin v. Löwis · 18 years ago
  39. 8e24a96 Whitespace normalization. by Tim Peters · 18 years ago
  40. dc68ffd Remove accidently committed, duplicated test. by Thomas Heller · 18 years ago
  41. ab1049c memcmp() can return values other than -1, 0, and +1 but tp_compare must not. by Thomas Heller · 18 years ago
  42. 16ee33a test_threading now skips testing alternate thread stack sizes on by Andrew MacIntyre · 18 years ago
  43. d336e98 Don't produce output in test_builtin. by Georg Brandl · 18 years ago
  44. 7e3ba2a Bug #1535165: fixed a segfault in input() and raw_input() when by Georg Brandl · 18 years ago
  45. 9908d16 Bug #1535182: really test the xreadlines() method of bz2 objects. by Georg Brandl · 18 years ago
  46. e6c9f98 Fix #1530559, struct.pack raises TypeError where it used to convert. by Bob Ippolito · 18 years ago
  47. b1ccc4d Whitespace normalization. by Tim Peters · 18 years ago
  48. e9462c7 Change fix for segfaulting property(), add a NEWS entry and a test. by Georg Brandl · 18 years ago
  49. 06ded09 Fix the 'compiler' package to generate correct code for MAKE_CLOSURE. by Neil Schemenauer · 18 years ago
  50. 0cbd805 Bug #1333982: string/number constants were inappropriately stored by Neal Norwitz · 18 years ago
  51. 4ffedad Bug #1191458: tracing over for loops now produces a line event by Neal Norwitz · 18 years ago
  52. ff4b63b Bug #1531405, format_exception no longer raises an exception if by Neal Norwitz · 18 years ago
  53. 9b0ca79 Patch #1519025 and bug #926423: If a KeyboardInterrupt occurs during by Neal Norwitz · 18 years ago
  54. 3ee5941 Let us know when there was a problem and the child had to kill the parent by Neal Norwitz · 18 years ago
  55. 4edcba6 Whitespace normalization. by Tim Peters · 18 years ago
  56. 86e1e38 [Patch #1520905] Attempt to suppress core file created by test_subprocess.py. by Andrew M. Kuchling · 18 years ago
  57. 6458452 Whitespace normalization. by Tim Peters · 18 years ago
  58. 313f8a9 Try to prevent hangs on Tru64/Alpha buildbot. I'm not certain this will help by Neal Norwitz · 18 years ago
  59. ec3c5e3 Verify that the signal handlers were really called by Neal Norwitz · 18 years ago
  60. 4e67838 Don't copy directory stat times in shutil.copytree on Windows Fixes #1525866. by Martin v. Löwis · 18 years ago
  61. f71ec5a Bug #1515471: string.replace() accepts character buffers again. by Neal Norwitz · 18 years ago
  62. 0d62a06 Patch #1531113: Fix augmented assignment with yield expressions. by Neal Norwitz · 18 years ago
  63. da9face Whitespace normalization. by Tim Peters · 18 years ago
  64. b5a701b Disable test_getnode too, since this is also unreliable. by Neal Norwitz · 18 years ago
  65. 2fde3bd Disable these tests until they are reliable across platforms. by Neal Norwitz · 18 years ago
  66. 9297e16 restore test un-intentionally removed in the xmlcore purge (revision 50941) by Fred Drake · 18 years ago
  67. fbdeaad expunge the xmlcore changes: by Fred Drake · 18 years ago
  68. edd9b0d Bug #1441397: The compiler module now recognizes module and function by Georg Brandl · 18 years ago
  69. 4793aa3 Patch #1529686: also run test_email_codecs with regrtest.py. by Georg Brandl · 18 years ago
  70. 750c442 Live with that "the hardware address" is an ill-defined by Tim Peters · 18 years ago
  71. df80af7 Ensure the actual number matches the expected count by Neal Norwitz · 18 years ago
  72. 6f68147 Bug #1529297: The rewrite of doctest for Python 2.4 unintentionally by Tim Peters · 18 years ago
  73. 00decd7 Patch #1520294: Support for getset and member descriptors in types.py, by Barry Warsaw · 18 years ago
  74. 08310d6 check_node(): stop spraying mystery output to stderr. by Tim Peters · 18 years ago
  75. 75a832d Make uuid test suite pass on this box by requesting output with LC_ALL=C. by Georg Brandl · 18 years ago
  76. daea035 Whitespace normalization. by Tim Peters · 18 years ago
  77. f102fc5 Add test_main() methods. These three tests were never run by regrtest.py. by Georg Brandl · 18 years ago
  78. 95621b2 Whitespace normalization. by Tim Peters · 18 years ago
  79. 5f13578 Part of bug #1523610: fix miscalculation of buffer length. by Georg Brandl · 18 years ago
  80. 0619a32 Bug #1459963: properly capitalize HTTP header names. by Georg Brandl · 18 years ago
  81. b62efad Document the crashers that will not go away soon as "won't fix", by Armin Rigo · 18 years ago
  82. 5a9a2a3 Added another crasher, which hit me today (I was not intentionally by Armin Rigo · 18 years ago
  83. 4df7c0a Document why is and is not a good way to fix the gc_inspection crasher. by Armin Rigo · 18 years ago
  84. 813669f Fix a bug in the messages for an assert failure where not enough arguments to a string by Brett Cannon · 18 years ago
  85. 0c4a3b3 current_frames_with_threads(): There's actually no way by Tim Peters · 18 years ago
  86. 4d16b91 Don't use standard assert: want tests to fail even when run with -O. by Greg Ward · 18 years ago
  87. 0bbfd83 Whitespace normalization. by Tim Peters · 18 years ago
  88. c13c34c Patch #1515343: Fix printing of deprecated string exceptions with a by Georg Brandl · 18 years ago
  89. bda0dde Patch #1448199: Release GIL around ConnectRegistry. by Martin v. Löwis · 18 years ago
  90. 48fae7a Resync optparse with Optik 1.5.3: minor tweaks for/to tests. by Greg Ward · 18 years ago
  91. afa358f Get mailbox module working on OS/2 EMX port. by Andrew MacIntyre · 18 years ago
  92. 7802af4 Be a lot smarter about whether this test passes: instead of assuming by Greg Ward · 18 years ago
  93. cde0fa9 Don't fail if the directory already exists by Neal Norwitz · 18 years ago
  94. 1a2959c Fix SF#1516184 (again) and add a test to prevent regression. by Phillip J. Eby · 18 years ago
  95. 112aad3 SF bug 1524317: configure --without-threads fails to build by Tim Peters · 18 years ago
  96. 73a9ead Whitespace normalization. by Tim Peters · 18 years ago
  97. caebe22 Fix bug #1520914. Starting in 2.4, time.strftime() began to check the bounds by Brett Cannon · 18 years ago
  98. 7b71bf3 Remove usage of sets module (patch #1500609). by Georg Brandl · 18 years ago
  99. 84be93b Bug #1512814, Fix incorrect lineno's when code within a function by Neal Norwitz · 18 years ago
  100. 7d1d436 Bug #1223937: CalledProcessError.errno -> CalledProcessError.returncode. by Peter Astrand · 18 years ago