1. d489398 r903@spiff: Fredrik | 2005-11-12 16:28:37 +0100 by Fredrik Lundh · 19 years ago
  2. 0d89e35 r879@spiff: Fredrik | 2005-11-12 14:38:03 +0100 by Fredrik Lundh · 19 years ago
  3. e62e936 Change PrettyPrinter.pprint(), so that output is written directly to the by Walter Dörwald · 19 years ago
  4. 1cb179e Bug #1338995: fix problem with new webbrowser.py. by Georg Brandl · 19 years ago
  5. 966c264 Fix typos. by Walter Dörwald · 19 years ago
  6. 8b6b53f Fixed indentation bug in _connect_unixsocket (thanks to Ken Lalonde for reporting it/supplying a patch) by Vinay Sajip · 19 years ago
  7. 380f417 Patch by pythonic <pythonic@gmail.com> to support Fedora as Linux distro. by Marc-André Lemburg · 19 years ago
  8. c6686b7 Added proper reflection on instances of <type 'method-wrapper'>, e.g. by Armin Rigo · 19 years ago
  9. f4afb21 similar to SF bug 847019: a quick check in the time() constructor, which by Armin Rigo · 19 years ago
  10. 9a2dcf8 Fix SF bug #417833 (pydoc HTTP reload failure) by removing from by Ka-Ping Yee · 19 years ago
  11. a487e4e Accept patch to resolve SF bug #651124. by Ka-Ping Yee · 19 years ago
  12. 6d98ed4 Oops, forgot to add the output file to 41388. by Neal Norwitz · 19 years ago
  13. 0f46bbf Bug #1346533, select.poll() doesn't raise an error if timeout > sys.maxint by Neal Norwitz · 19 years ago
  14. 5d0bf94 Change time.strptime() to raise ValueError whenever there is an error in the by Brett Cannon · 19 years ago
  15. cf48638 Fix SF #1345263, colorsys tests, bug in frange by Neal Norwitz · 19 years ago
  16. 245a5ab Exception handling now raises KeyboardInterrupt and SystemExit rather than passing to handleError by Vinay Sajip · 19 years ago
  17. 85c1909 Exception handling now raises KeyboardInterrupt and SystemExit rather than passing to handleError by Vinay Sajip · 19 years ago
  18. 383d3c0 test_directories(): This test had no chance of passing on by Tim Peters · 19 years ago
  19. db390c1 fix typos, mostly in comments by Fred Drake · 19 years ago
  20. f339654 Patch #1338314, Bug #1336623: fix tarfile so it can extract by Neal Norwitz · 19 years ago
  21. d9cf593 Cosmetic change: make all hex literals use upper case hex so that they by Marc-André Lemburg · 19 years ago
  22. 3c72ded Removed the decoding_map from the codecs where this is possible. by Marc-André Lemburg · 19 years ago
  23. 6ab080c Fix problem handling EXTENDED_ARGs from SF bug # 1333982 by Neal Norwitz · 19 years ago
  24. f895065 Fix compiler test when run with -u (long mode) by Neal Norwitz · 19 years ago
  25. 1e86beb One-off "No handlers..." error message only raised if raiseExceptions is set. by Vinay Sajip · 19 years ago
  26. d403c45 Fix arigo's funky LOAD_NAME bug: implicit globals inside classes have by Neil Schemenauer · 19 years ago
  27. ebc3457 Revert previous checkin: by Neal Norwitz · 19 years ago
  28. ab541bb Revert change, func_name of lambda's is back to <lambda>. by Neil Schemenauer · 19 years ago
  29. 0f00ba8 Replace the old EBCDIC codecs with new ones using the decoding table. by Marc-André Lemburg · 19 years ago
  30. 7797be7 Alias iso8859_1 to latin_1 which is the same encoding, but has by Marc-André Lemburg · 19 years ago
  31. 75c9e83 Add a few more Mac OS encodings. The mapping tables for these are by Marc-André Lemburg · 19 years ago
  32. a1129f4 Replace the old charmap codecs with new ones generated from the current by Marc-André Lemburg · 19 years ago
  33. b2308bb Fix bug: by Michael W. Hudson · 19 years ago
  34. 37c0844 Fix SF bug #1167751, Argument genexp corner case by Neal Norwitz · 19 years ago
  35. 1e8659b Don't use a string exception since it's deprecated by Neal Norwitz · 19 years ago
  36. f21c8ed Add comment lost from AST merge by Neal Norwitz · 19 years ago
  37. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  38. bc2a62f Disable some tests in anticipation of merging ast-branch to the head by Jeremy Hylton · 19 years ago
  39. b0e32e2 Fix SF bug # 1330039, patch # 1331635 from Lars Gustaebel (tarfile maintainer) by Neal Norwitz · 19 years ago
  40. 40563ed Get BSD DB working most for version 3.2 by Neal Norwitz · 19 years ago
  41. 4b0f20d Teach unquote() to handle unicode inputs by Raymond Hettinger · 19 years ago
  42. 239322b Optimised Placeholders handling of child loggers by using a dict rather than a list (much slower in the pathological case of hundreds of child Loggers to a Placeholder - problem reported by Ryan Blazecka). by Vinay Sajip · 19 years ago
  43. b793506 Added Host and Content-type headers to requests sent by HTTPHandler (suggested by Steven Vereecken) by Vinay Sajip · 19 years ago
  44. 007f8df Bug #1245379: Add "unicode-1-1-utf-7" as an alias for "utf-7" as specified by Walter Dörwald · 19 years ago
  45. b980113 Fix errors in _synthesize because of missing basename attribute of by Georg Brandl · 19 years ago
  46. c252c59 Fix unit test failure -- the output received from Python can be empty, by Guido van Rossum · 19 years ago
  47. 43d6e81 Fixed bug where the logging message was wrongly being demoted from Unicode to string (SF #1314107) by Vinay Sajip · 19 years ago
  48. d1c1e10 Part of SF patch #1313939: Speedup charmap decoding by extending by Walter Dörwald · 19 years ago
  49. cc9a951 SF #1313496: bisect C replacement doesn't accept named args by Raymond Hettinger · 19 years ago
  50. 196f733 Fix pychecker warnings by Neal Norwitz · 19 years ago
  51. 389482c Incorporate Tal Einat's comment on Patch 936169: Fixes alignment problem. by Kurt B. Kaiser · 19 years ago
  52. 0a13579 Tweak CodeContext.py docstrings, comments, and names. by Kurt B. Kaiser · 19 years ago
  53. e8f2443 Patch #754022: Greatly enhanced webbrowser.py. by Georg Brandl · 19 years ago
  54. 11bd119 SF bug #887946, segfault if redirecting directory by Neal Norwitz · 19 years ago
  55. 7491022 Increased performance in CodeContext extension Patch 936169 Noam Raphael by Kurt B. Kaiser · 19 years ago
  56. 40d3781 - Fix segfault with invalid coding. by Neal Norwitz · 19 years ago
  57. 8b813db bug [ 729103 ] Cannot retrieve name of super object by Georg Brandl · 19 years ago
  58. 484d9a4 Patch #1309009, Fix segfault in pyexpat when the XML document is by Neal Norwitz · 19 years ago
  59. aa93517 patch [ 1300515 ] xdrlib.py: pack_fstring() did not use null bytes for padding by Georg Brandl · 19 years ago
  60. 80ba8e8 bug [ 1296004 ] MemoryError in httplib by Georg Brandl · 19 years ago
  61. dd5c023 some more fixes and tests for inspect.getsource(), triggered by crashes by Armin Rigo · 19 years ago
  62. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  63. 3a708df Changed license header: Now simply referring to PSF. This closes bug 1138653. by Peter Astrand · 19 years ago
  64. 10402a3 Patches #1298449 and #1298499: Add some missing checks for error by Michael W. Hudson · 19 years ago
  65. 19e11c8 MacOSX 10.4 apparently does not allow the creation time to be set to later by Jack Jansen · 19 years ago
  66. f879024 test and fix for buggy handling of exceptions raised by C functions, by Armin Rigo · 19 years ago
  67. f3f231f - Patch #1166948: locale.py: Prefer LC_ALL, LC_CTYPE and LANG over LANGUAGE by Matthias Klose · 19 years ago
  68. 3a703b6 Reverted revision 1.83, which introduced a bug and subtle incompatibility by Armin Rigo · 19 years ago
  69. f8948ca skip _locale test if OS X < 10.4 by Skip Montanaro · 19 years ago
  70. 4ed6738 Patch #1268314: Cache lines in StreamReader.readlines for performance. by Martin v. Löwis · 19 years ago
  71. 9e28107 Test case for latest complexobject fix. by Georg Brandl · 19 years ago
  72. 116f16e Added lock acquisition around handler removal from logger by Vinay Sajip · 19 years ago
  73. 9bda1d6 No longer ignore exceptions raised by comparisons during key lookup. by Raymond Hettinger · 19 years ago
  74. a783d06 Clear out the regex cache when the TimeRE cache is invalidated by a locale by Brett Cannon · 19 years ago
  75. 8ee3e5a - Changes donated by Elemental Security to make it work on AIX 5.3 by Guido van Rossum · 19 years ago
  76. 6fa0c5a Bug #1202493: Fixing SRE parser to handle '{}' as perl does, rather than by Gustavo Niemeyer · 19 years ago
  77. ebb7f30 Speed-up escape() by Raymond Hettinger · 19 years ago
  78. a1d09e2 Minor cleanup. by Raymond Hettinger · 19 years ago
  79. cf6b632 Corrected version of 1.170 by Raymond Hettinger · 19 years ago
  80. 2bdec7b Revert 1.170. Add tests. by Raymond Hettinger · 19 years ago
  81. 803ce80 Simplify and speed-up unquote(). by Raymond Hettinger · 19 years ago
  82. 957b126 Simplify and speed-up quote_plus(). by Raymond Hettinger · 19 years ago
  83. 199d2f7 SF #1285086: urllib.quote is too slow by Raymond Hettinger · 19 years ago
  84. 0ee9ba2 Added _handlerList to allow shutdown to flush and close handlers in reverse order of creation (see SF# 1282539) by Vinay Sajip · 19 years ago
  85. e029da0 Quote docstring with r"" to keep '\r\n' in example code. by Hye-Shik Chang · 19 years ago
  86. c384fc2 Changed _srcfile determination to support py2exe. by Vinay Sajip · 19 years ago
  87. c5238b8 SF bug #1235646: codecs.StreamRecoder.next() now reencodes the data it reads by Walter Dörwald · 19 years ago
  88. cd3c26a Reverting previous checkin. This breaks too much of HTMLParser to be applied by Georg Brandl · 19 years ago
  89. 4ce69a5 No need to import exceptions, they are builtins by Neal Norwitz · 19 years ago
  90. 6203196 Remove unused import by Neal Norwitz · 19 years ago
  91. a1be88e patch [ 1242454 ] shutil.copytree() quits too soon after an error. by Georg Brandl · 19 years ago
  92. 7847405 bug [ 761452 ] HTMLParser chokes on my.yahoo.com output by Georg Brandl · 19 years ago
  93. be5615e updated __version__ by Piers Lauder · 19 years ago
  94. 14f3940 changed select() so readonly flag is treated as a boolean by Piers Lauder · 19 years ago
  95. a47d1c0 SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complain by Walter Dörwald · 19 years ago
  96. f1b2ba6 Fix logic error introduced in last commit. Also add a comment to explain what by Brett Cannon · 19 years ago
  97. 6e372d1 fix bug where str.find() was being misused where __contains__ should have been by Brett Cannon · 19 years ago
  98. 5dbdc59 Patch #1168594: set sizes of non-regular files to zero. Fixes #1167128. by Martin v. Löwis · 19 years ago
  99. 9e34c04 Whitespace normalization (via reindent.py). by Tim Peters · 19 years ago
  100. e8889c5 testSeekBackwardsFromEnd(): Repair obvious syntax error. by Tim Peters · 19 years ago