1. 2411a2d Don't try to convert the test filename to Unicode with -U. by Martin v. Löwis · 22 years ago
  2. 774348c Fix typo. by Martin v. Löwis · 22 years ago
  3. cc40ced Look in db4 directories when checking for db4. by Martin v. Löwis · 22 years ago
  4. 838a359 Search for tix subdirectories. Fixes #564729. Will backport to 2.2. by Martin v. Löwis · 22 years ago
  5. 5f26dda Restore to ANSI C. by Michael W. Hudson · 22 years ago
  6. 84fcd92 Install the bz2 DLL on Windows. by Tim Peters · 22 years ago
  7. 44a7910 I already forgot what I changed -- it wasn't important <wink>. by Tim Peters · 22 years ago
  8. 63c1081 OK -- all tests pass on Windows now. The rest were due to 3 more by Tim Peters · 22 years ago
  9. 9de06bd More tests run on Windows now. Something is still wrong here, but no by Tim Peters · 22 years ago
  10. 499d09a Many changes to get this to pass on Windows, and to make it easier to by Tim Peters · 22 years ago
  11. 3de7526 Whitespace normalization. by Tim Peters · 22 years ago
  12. e713031 Comment out the test docstrings so we can at least tell which tests are failing. by Tim Peters · 22 years ago
  13. 230a60c Whitespace normalization. by Tim Peters · 22 years ago
  14. b0ead4e Start building the bz2 module on Windows. by Tim Peters · 22 years ago
  15. ae9cbee Open at least one binary file in binary mode. This allows a few of the by Tim Peters · 22 years ago
  16. 6ee6db8 bz2_compress/bz2_decompress: more casting away LONG_LONG for by Tim Peters · 22 years ago
  17. 39185d6 BZ2Decomp_decompress(): Fixed more long vs LONG_LONG confusions. by Tim Peters · 22 years ago
  18. 2858e5e BZ2Comp_flush(): Fixed more int vs LONG_LONG confusions. by Tim Peters · 22 years ago
  19. f29f0c6 BZ2Comp_compress(): Explicitly cast the LONG_LONG size argument to by Tim Peters · 22 years ago
  20. 07f075c BZ2Comp_compress(): changed decl of totalout to LONG_LONG, since it's by Tim Peters · 22 years ago
  21. a17c0c4 Repaired signed-vs-unsigned mismatch. by Tim Peters · 22 years ago
  22. e322809 This couldn't compile on WIndows, due to hardcoded "long long". Repaired. by Tim Peters · 22 years ago
  23. 7cd83ca Another attempt at making the set constructor both safe and fast. [SF by Guido van Rossum · 22 years ago
  24. 91e7753 [Bug #233259] Ugly traceback for DistutilsPlatformError by Andrew M. Kuchling · 22 years ago
  25. 706867c Fix comment typo by Andrew M. Kuchling · 22 years ago
  26. 49ea7be * Modules/bz2module.c by Gustavo Niemeyer · 22 years ago
  27. 15628fe Simply delete the fpectl module, instead of leaving it commented out; by Andrew M. Kuchling · 22 years ago
  28. d5c124a Richie Hindle by Michael W. Hudson · 22 years ago
  29. 006c752 This is Richie Hindle's patch: by Michael W. Hudson · 22 years ago
  30. 019a78e Assorted patches from Armin Rigo: by Michael W. Hudson · 22 years ago
  31. 1f04610 Make strip behave as documented. Will backport to 2.2.3. by Martin v. Löwis · 22 years ago
  32. 1644986 Clarify the meaning of "requires Python 1.5.2". by Raymond Hettinger · 22 years ago
  33. 0da7f39 Closes SF bug #634069 reporting the docs on the ** operator were out by Raymond Hettinger · 22 years ago
  34. 0ec1ddc _update(): Commented the new obscurity. Materialized into a tuple by Tim Peters · 22 years ago
  35. 1eb1fb8 Closes SF bug #628246. by Raymond Hettinger · 22 years ago
  36. dde800e Got rid of the python.rsrc resource file. The error message strings and by Jack Jansen · 22 years ago
  37. 430b156 Add documentation for the PEP 293 functionality: by Walter Dörwald · 22 years ago
  38. b5f41de Minor markup adjustments. by Fred Drake · 22 years ago
  39. 5ae8e01 Restore attribute access so that the following work again: by Raymond Hettinger · 22 years ago
  40. 492620a Use dynamic linking for the SHGetSpecialFolderPath function, it is not by Thomas Heller · 22 years ago
  41. 8560bb8 Fix a small bug when sys.argv[0] has an absolute path. by Thomas Heller · 22 years ago
  42. 5b470e0 Document the changed fdopen behaviour. (Hope the markup is ok). by Thomas Heller · 22 years ago
  43. 95cb7e4 NEWS entry for the changed fdopen function. by Thomas Heller · 22 years ago
  44. 1f043e2 Enforce valid filemode. Fixes SF Bug #623464. by Thomas Heller · 22 years ago
  45. e327120 Try linking the major/minor test program. Fixes #634444. by Martin v. Löwis · 22 years ago
  46. c523b04 Fixed sre bug "[#581080] Provoking infinite scanner loops". by Gustavo Niemeyer · 22 years ago
  47. 65fe8dd Script to create .app bundles. Largely untested. by Jack Jansen · 22 years ago
  48. dc46175 Add --check-tkinter to setup.py. Install IDLE. Fixes #634078. by Martin v. Löwis · 22 years ago
  49. eb58f5d Use column= rather than col=; with Tk 8.4 col= no longer works. by Guido van Rossum · 22 years ago
  50. fbceb01 Fixed bug "[#466200] ability to specify a 'verify' script". by Gustavo Niemeyer · 22 years ago
  51. 4dbf192 Add next() and __iter__() methods to StreamReader, StreamReaderWriter by Walter Dörwald · 22 years ago
  52. 07e1476 Make int("...") return a long if an int would overflow. by Walter Dörwald · 22 years ago
  53. aca49b0 Fix NameError exception ('name' undefined) by Andrew M. Kuchling · 22 years ago
  54. cbd6fb9 Handle really big steps in extended slices. by Michael W. Hudson · 22 years ago
  55. 9050a51 Fix docstring typos by Andrew M. Kuchling · 22 years ago
  56. 572aae3 Old change (probably suggested by Jason Tishler) The GNU/Windows compiler is now called MinGW by Andrew M. Kuchling · 22 years ago
  57. e3fb22b [Patch #633635 from David M. Cooke] by Andrew M. Kuchling · 22 years ago
  58. 7e23f00 [Patch #633635 from David M. Cooke] by Andrew M. Kuchling · 22 years ago
  59. 4e7be06 Fixed bug #470582, using a modified version of patch #527371, from Greg Chapman. by Gustavo Niemeyer · 22 years ago
  60. 3c2c433 Fix for bug 631247: configure should test the build directory for by Jack Jansen · 22 years ago
  61. 57f0f34 Skip the test_nocaret test when running as jython. Jython happens to add by Finn Bock · 22 years ago
  62. 41c570f Make the test pass for jython where there are no sys.executable. by Finn Bock · 22 years ago
  63. 5a231c8f By default when getting the search menu, the currently highligted by Chui Tey · 22 years ago
  64. 110aa50 Fix minor wording and 2 typos by Neal Norwitz · 22 years ago
  65. 40b11b8 Support sdist. by Martin v. Löwis · 22 years ago
  66. fad265e Whoops, fix the typo correctly this time by Neal Norwitz · 22 years ago
  67. 03b109a Use PyOS_snprintf() instead of sprintf and wrap the long line by Neal Norwitz · 22 years ago
  68. 5d8d618 Add an entry for pdb's new `pp' command. by Barry Warsaw · 22 years ago
  69. 75f36b7 Document the new `pp' command. by Barry Warsaw · 22 years ago
  70. 210bd20 Implement a `pp' command, which is like `p' except that it by Barry Warsaw · 22 years ago
  71. c2f7757 Fix minor typos by Neal Norwitz · 22 years ago
  72. 71f5acd Minor cleanups, markup. by Fred Drake · 22 years ago
  73. a288a23 Document that images go away when they go away. Fixes #632323. by Martin v. Löwis · 22 years ago
  74. da2525e parse(), _parseheaders(), _parsebody(): A fix for SF bug #633527, by Barry Warsaw · 22 years ago
  75. a0a0076 test_no_separating_blank_line(): A test for SF bug #633527, no by Barry Warsaw · 22 years ago
  76. 847fdbb A message with no separating blank line between the headers and the by Barry Warsaw · 22 years ago
  77. 48b0a1c test_text_plain_in_a_multipart_digest(): A test of the fix for SF bug by Barry Warsaw · 22 years ago
  78. 5c9130e _parsebody(): A fix for SF bug #631350, where a subobject in a by Barry Warsaw · 22 years ago
  79. 00e6a02 Test case, distilled from SF bug #631350, where a subobject in a by Barry Warsaw · 22 years ago
  80. 9288f95 Another round on SF patch 618135: gzip.py and files > 2G by Tim Peters · 22 years ago
  81. cd8fdbb Repair inconsistent use of tabs and spaces. by Jeremy Hylton · 22 years ago
  82. a5f4c07 Remove use of string module and reflow a couple of long lines. by Jeremy Hylton · 22 years ago
  83. 8f4dcbd Bump __version__ (yes, to 2.5 "minus") by Barry Warsaw · 22 years ago
  84. 030ddf7 Jason Mastaler's patch to break the dependence on rfc822.py for the by Barry Warsaw · 22 years ago
  85. 7d7930b * bzmodule.c More fixes of XDECREF'd values not initialized. by Gustavo Niemeyer · 22 years ago
  86. e94d8fa Fix an old bug in poll(). When a signal is handled while we're by Guido van Rossum · 22 years ago
  87. 18142c0 Fix SF #633935, test_bz2 fails by Neal Norwitz · 22 years ago
  88. 2801fe1 Use PyList_CheckExact and PyTuple_CheckExact for checking whether by Michael W. Hudson · 22 years ago
  89. 18c7d98 Fix a few minor nits. Still need to actually proofread this. by Fred Drake · 22 years ago
  90. 5da854f This is Alex Martelli's patch by Michael W. Hudson · 22 years ago
  91. cc6cc5d Fix minor markup nits. by Fred Drake · 22 years ago
  92. f8ca836 Patch implementing bz2 module. by Gustavo Niemeyer · 22 years ago
  93. 6b01685 This patch fixes the following bugs: by Gustavo Niemeyer · 22 years ago
  94. 173f11d Some days, I think my comment of by Michael W. Hudson · 22 years ago
  95. d7c14c6 Must now give the basename - not including directories - of the by Thomas Heller · 22 years ago
  96. 78a7aee SF 633560: tokenize.__all__ needs "generate_tokens" by Raymond Hettinger · 22 years ago
  97. a326f47 This stopped working on Windows, due to a reference to the non-existent by Tim Peters · 22 years ago
  98. bc5e3cc Use personal e-mail address; update date; various small edits; add a name to acks by Andrew M. Kuchling · 22 years ago
  99. 69371d6 Set breakpoints on remote debugger by Chui Tey · 22 years ago
  100. 6623906 SF #633013, Fix NIS causing interpreter core dump by Neal Norwitz · 22 years ago