1. 204d786 Fix exception wording by Andrew M. Kuchling · 20 years ago
  2. e1ca355 [Bug #918710] Add paragraph to clarify docs by Andrew M. Kuchling · 20 years ago
  3. 26f6bdf [Bug #758665] cgitb.scanvars() fails because of an unititialized value variable. Patch from Robin Becker. by Andrew M. Kuchling · 20 years ago
  4. 94afd3e Remove lots of magic constants. by Neil Schemenauer · 20 years ago
  5. 1b50b43 [Bug #936837] Add missing word by Andrew M. Kuchling · 20 years ago
  6. 2400e93 SF #877165: Give an info about what C++ compiler command should be by Hye-Shik Chang · 20 years ago
  7. 58fc5d08 Rewrote to use temporary files instead of StringIO objects in most places. by Skip Montanaro · 20 years ago
  8. a2c9a98 [Bug #897935] Fix fd leak in pty.spawn(). Reported by James Henstridge; 2.3 bugfix candidate. by Andrew M. Kuchling · 20 years ago
  9. b7d8ce0 [Bug #921657] Allow '@' in unquoted HTML attributes. Not strictly legal according to the HTML REC, but HTMLParser is already a pretty loose parser. Reported by Bernd Zimmermann. by Andrew M. Kuchling · 20 years ago
  10. 9021c95 SF bug #964230: random.choice([]) should return more intelligible exception by Raymond Hettinger · 20 years ago
  11. ba8b6bc [Bug #954364] inspect.getframeinfo() sometimes produces incorrect traceback line #s; fix is to look at tb.tb_lineno, not tb.frame.f_lineno. Patch from Robin Becker and me. by Andrew M. Kuchling · 20 years ago
  12. 39aef79 Fix a bug that robotparser starves memory when the server responses by Hye-Shik Chang · 20 years ago
  13. 5962f45 [Bug #841757] Patch from /F to allow Unicode strings as struct keys by Andrew M. Kuchling · 20 years ago
  14. b12d97c [Bug #841757] Exercise handling of Unicode strings by Andrew M. Kuchling · 20 years ago
  15. f2c0830 SF bug #963956: Bad error mesage when subclassing a module by Raymond Hettinger · 20 years ago
  16. 0096e26 Refactored site.py into functions. Also moved over to using sets. by Brett Cannon · 20 years ago
  17. 642c8a1 Patch #926209: Patch to setup.py to run on x86_64 Linux. by Martin v. Löwis · 20 years ago
  18. 2d6783b SF #966375: Fix typo (Reported by Kristian Ovaska) by Hye-Shik Chang · 20 years ago
  19. 4ec44e8 Replaced arbitrary addend in tuple_hash with one that is known to generate by Raymond Hettinger · 20 years ago
  20. 4e49b83 SF patch #961387: Make IDLE's paragraph reformatting width configurable by Raymond Hettinger · 20 years ago
  21. 3c14544 Reuse width/iswide tests from strings_test. (Suggested by Walter Dörwald) by Hye-Shik Chang · 20 years ago
  22. 6838c55 Add comments for unicode-only methods to give hints on AttributeError by Hye-Shik Chang · 20 years ago
  23. 7bd8606 Fix typo. by Hye-Shik Chang · 20 years ago
  24. 5f51259 Add iswide() and width() method for UserString according as the by Hye-Shik Chang · 20 years ago
  25. 0701bd6 Fix for #860242: use correct names in the "save preferences" dialog. by Jack Jansen · 20 years ago
  26. 30184f3 - Fix for #862941: "run with commandline python" crashed. Fixed. by Jack Jansen · 20 years ago
  27. 22ec5c3 if we must argue over the/they, we can just remove the unecessary word by Fred Drake · 20 years ago
  28. 175d188 avoid backticks in examples; use repr() instead by Fred Drake · 20 years ago
  29. 1afd480 Fix for #932977: MacOSX does not pass the whole pathname in argv[0] for by Jack Jansen · 20 years ago
  30. 7637574 On startup, attempt to set the working directory to $HOME. by Jack Jansen · 20 years ago
  31. 2d1a2aa Fix typo: the-->they by Raymond Hettinger · 20 years ago
  32. 6dfed6c Fix typo. by Guido van Rossum · 20 years ago
  33. 3151e18 Small clarification. by Michael W. Hudson · 20 years ago
  34. 8d562e6 Very large scripts folders could crash the IDE, because it runs out by Jack Jansen · 20 years ago
  35. d6d35d9 - fix typo reported by John Belmonte - wrap a long line by Fred Drake · 20 years ago
  36. 77ca6c4 Warn abou missing mutate flag to ioctl. Fixes #696535. by Martin v. Löwis · 20 years ago
  37. 6b08a40 Partial fix for #887242 (link extensions with dynamic_lookup in stead by Jack Jansen · 20 years ago
  38. bc555e3 Fix the grammar a bit more. (Adjusted by Tony Meyer) by Hye-Shik Chang · 20 years ago
  39. 9bc4f2d Drop claims that Unicode always means UCS-2. Fixes #881861. by Martin v. Löwis · 20 years ago
  40. 4a9b806 Document string methods that are locale-dependent. Fixes #935749. by Martin v. Löwis · 20 years ago
  41. 558d9bf Patch #929192: Improvements to bluetooth support. by Martin v. Löwis · 20 years ago
  42. eac324b Patch #957240: Add count parameter to asyncore.loop. by Martin v. Löwis · 20 years ago
  43. 3e501dc One more attempt to fix the grammar. by Martin v. Löwis · 20 years ago
  44. 6186410 SF #965425: fix so hyphenated words surrounded by punctuation are by Greg Ward · 20 years ago
  45. 29eb8c3 Do an actual test for xcodebuild, in stead of relying on the user to by Jack Jansen · 20 years ago
  46. 9f5f056 Remove the pcre module. by Thomas Heller · 20 years ago
  47. 118f931 Rename class attribute containing the class to be tested, so the name is the by Walter Dörwald · 20 years ago
  48. b4541c2 Remove reference to pcre module by Andrew M. Kuchling · 20 years ago
  49. 5ededdd Remove pcre module by Andrew M. Kuchling · 20 years ago
  50. f7e836e Don't build the pcre module any more by Andrew M. Kuchling · 20 years ago
  51. acf2618 Remove reference to pcre module by Andrew M. Kuchling · 20 years ago
  52. 4ad9723 Remove pre module by Andrew M. Kuchling · 20 years ago
  53. 5629d0e Fix grammar hopefully. :) by Hye-Shik Chang · 20 years ago
  54. 974ed7c - SF #962502: Add two more methods for unicode type; width() and by Hye-Shik Chang · 20 years ago
  55. b6568b9 Add a name (old change sitting in my tree) by Andrew M. Kuchling · 20 years ago
  56. d783694 Remove old reminder by Andrew M. Kuchling · 20 years ago
  57. 43285d4 CGMainDisplayID() doesn't exist on 10.1, so don't try to call it when by Jack Jansen · 20 years ago
  58. aa2e498 Record Python 2.3.4 (final) build number. by Thomas Heller · 20 years ago
  59. 9c322fb The expression list in inheritance is not optional. Fixes #960448. by Martin v. Löwis · 20 years ago
  60. 477c856 Move grammar rule for lambda_form into section on lambdas. Fixes #964525. by Martin v. Löwis · 20 years ago
  61. 13ff116 Fix typo reported in #964592. Will backport to 2.3. by Martin v. Löwis · 20 years ago
  62. dd07e59 Document PyModule_AddIntConstant to take a long. Fixes #962471. by Martin v. Löwis · 20 years ago
  63. 04697e8 Patch #924294: Do not check for AF_INET6 if it is not defined. by Martin v. Löwis · 20 years ago
  64. 7dc8ec9 Copyright year changed by Vinay Sajip · 20 years ago
  65. d894872 Patch #954115: Fix os.stat handling of UNC roots. Will backport to 2.3. by Martin v. Löwis · 20 years ago
  66. 0659452 Added IMAP4_stream to __all__ by Piers Lauder · 20 years ago
  67. 1f4bcf9 test_hash(): The test here is different enough from the one in the bug by Tim Peters · 20 years ago
  68. 7897ff0 Add genobject.c by Martin v. Löwis · 20 years ago
  69. 19a02ec Add genobject.c to the MSVC++ 6.0 build. by Raymond Hettinger · 20 years ago
  70. e440e47 Patch #957398: Add public API for Generator Object/Type. by Martin v. Löwis · 20 years ago
  71. 09e2cb0 [Bug #962631] Fix typo reported by Bryan Blackburn by Andrew M. Kuchling · 20 years ago
  72. 41bd022 SF bug #942952: Weakness in tuple hash by Raymond Hettinger · 20 years ago
  73. 504239f Silence noise in regrtest. by Martin v. Löwis · 20 years ago
  74. e148595 Fixup spacing in an example. by Raymond Hettinger · 20 years ago
  75. 173ecb6 Copy from python-2.3.spec. Incorporate patch #961465: by Martin v. Löwis · 20 years ago
  76. 2f50e90 SF patch 959726: sdist versus SVN by Tim Peters · 20 years ago
  77. 92816de Patch #932930: suggest the use of rawstrings for backslashes. by Martin v. Löwis · 20 years ago
  78. 2a6ba90 Patch #963318: Add support for client-side cookie management. by Martin v. Löwis · 20 years ago
  79. 0a6d0ff Port the dictionary tests from test_types.py to unittest. Collect as much by Walter Dörwald · 20 years ago
  80. cbd0b36 Fix typo (from SF bug #962602) by Walter Dörwald · 20 years ago
  81. 874ebd5 Add weakref support to sockets and re pattern objects. by Raymond Hettinger · 20 years ago
  82. 027bb63 Add weakref support to sockets and re pattern objects. by Raymond Hettinger · 20 years ago
  83. cb87bc8 Add weakref support to array.array and file objects. by Raymond Hettinger · 20 years ago
  84. 691d805 Make sets and deques weak referencable. by Raymond Hettinger · 20 years ago
  85. d70ad8a Update docstring for dict.update() to match the new realities. by Walter Dörwald · 20 years ago
  86. 8759090 starting to add comments to explain what's here by Fred Drake · 20 years ago
  87. 80ce6dd The default argument in dict.setdefault() defaults to None. by Walter Dörwald · 20 years ago
  88. c139909 The default argument in dict.setdefault() defaults to None. by Walter Dörwald · 20 years ago
  89. 08678a1 Remove float_compare as per by Michael W. Hudson · 20 years ago
  90. 76b8cc8 Band-aid type fix for by Michael W. Hudson · 20 years ago
  91. 4ccf336 Fill-in the introductory paragraph for the library tour. by Raymond Hettinger · 20 years ago
  92. 846865b Add a further tour of the standard library. by Raymond Hettinger · 20 years ago
  93. a8aebce Follow official recommendation for domain names in examples. by Raymond Hettinger · 20 years ago
  94. 79cddc5 stupid, stupid, stupid... raw_input() already supports readline() if the by Skip Montanaro · 20 years ago
  95. b98a8ba Add example that uses readline.readline(). by Skip Montanaro · 20 years ago
  96. 0dc2310 Exposed readline() function from the readline module. by Skip Montanaro · 20 years ago
  97. ddc819c Make sure sets are printed in sorted order by Raymond Hettinger · 20 years ago
  98. e36894d Updated to reflect new types. by Raymond Hettinger · 20 years ago
  99. 1453e4a * teach repr.repr() about collections.deque() * rename a variable for clarity by Raymond Hettinger · 20 years ago
  100. ba6cd36 * Updated repr.py to handle set() and frozenset(). by Raymond Hettinger · 20 years ago