1. 864de82 #1555501: document plistlib and move it to the general library. by Georg Brandl · 17 years ago
  2. 66e7363 #1269: fix a bug in pstats.add_callers() and add a unit test file for pstats. by Georg Brandl · 17 years ago
  3. 6f7e2d0 #1876: fix typos in test_operator. by Georg Brandl · 17 years ago
  4. 8584932 Fix test_pyclbr after urllib change. by Georg Brandl · 17 years ago
  5. 5235398 #1669: don't allow shutil.rmtree() to be called on a symlink. by Georg Brandl · 17 years ago
  6. 5611289 #1648: add sys.gettrace() and sys.getprofile(). by Georg Brandl · 17 years ago
  7. d5e6cf2 #1664522: in urllib, don't read non-existing directories in ftp mode, by Georg Brandl · 17 years ago
  8. 2235011 #856047: respect the ``no_proxy`` env var when checking for proxies by Georg Brandl · 17 years ago
  9. 9b0d46d #1178141: add addinfourl.code to get http status code from urllib. by Georg Brandl · 17 years ago
  10. dcd6b52 #1351692: in pprint, always call format() for dict and list items to enable by Georg Brandl · 17 years ago
  11. da40723 Document that zipfile decryption is insanely slow and fix a typo and by Gregory P. Smith · 17 years ago
  12. 0c63fc2 Fix zipfile decryption. The check for validity only worked on one by Gregory P. Smith · 17 years ago
  13. 88fbcf8 Add an interactive test script for exercising curses by Andrew M. Kuchling · 17 years ago
  14. 4a2762d Patch #1048820 from Stefan Wehr: add insert-mode editing to Textbox. by Andrew M. Kuchling · 17 years ago
  15. 350d03b Fixes/Accepts Patch for issue1189216 - Work properly with archives by Gregory P. Smith · 17 years ago
  16. 70eb2f9 Fix issue 1300: Quote command line arguments that contain a '|' character in by Gregory P. Smith · 17 years ago
  17. 92ffc63 Undo an unnecessary else: and indentation that r60104 added. by Gregory P. Smith · 17 years ago
  18. 87d4979 Fixes issue1336 - a race condition could occur when forking if the gc by Gregory P. Smith · 17 years ago
  19. e047e6d fix comment typos, use not arg instead of arg == "", add test coverage by Gregory P. Smith · 17 years ago
  20. 309501a #1663329: add os.closerange() to close a range of fds, by Georg Brandl · 17 years ago
  21. 15ce880 Bug 1277: make Maildir use the user-provided factory instead of hard-wiring MaildirMessage. by Andrew M. Kuchling · 17 years ago
  22. c6fde72 Fix #1146: TextWrap vs words 1-character shorter than the width. by Georg Brandl · 17 years ago
  23. 14404b6 Fix #1679: "0x" was taken as a valid integer literal. by Georg Brandl · 17 years ago
  24. 873c985 Fix #1693149. Now you can pass several modules separated by by Facundo Batista · 17 years ago
  25. 5c60bfc Patch #976880: add mmap .rfind() method, and 'end' paramter to .find(). by Andrew M. Kuchling · 17 years ago
  26. 6c29be5 Disabled test_xmlrpc:test_404. It's causing lots of false alarms. by Christian Heimes · 17 years ago
  27. e45a77a Patch #742598 from Michael Pomraning: add .timeout attribute to SocketServer that will call by Andrew M. Kuchling · 17 years ago
  28. 95016e7 Update for threading.local test. by Christian Heimes · 17 years ago
  29. 71a0451 Added unit test to verify that threading.local doesn't cause ref leaks. It seems that the thread local storage always keeps the storage of the last stopped thread alive. Can anybody comment on it, please? by Christian Heimes · 17 years ago
  30. 2b1b195 Fix issue #1822: MIMEMultipart.is_multipart() behaves correctly for a by Facundo Batista · 17 years ago
  31. 45169fb Several tweaks: add construction from strings and .from_decimal(), change by Jeffrey Yasskin · 17 years ago
  32. bf4c7c8 This got fixed for classic classes in r60057, and backported to 2.5.2 in 60056. by Guido van Rossum · 17 years ago
  33. 288e89a Added bytes and b'' as aliases for str and '' by Christian Heimes · 17 years ago
  34. a26c73e Added LoggerAdapter class, changed copyright dates, made check for extra parameter passed to logging methods explicitly against None rather than a truth value. by Vinay Sajip · 17 years ago
  35. 44bd6c0 Issue #1861: Add read-only attribute listing upcoming events in the order they will be run. by Raymond Hettinger · 17 years ago
  36. bde4ae4 Fixes (accepts patch) issue1339 - http://bugs.python.org/issue1339 by Gregory P. Smith · 17 years ago
  37. 63bfc1d Comply with RFC 3207. Fixes issue 829951 - http://bugs.python.org/issue829951 by Gregory P. Smith · 17 years ago
  38. 4731709 Make starmap() match its pure python definition and accept any itertable input (not just tuples). by Raymond Hettinger · 17 years ago
  39. 9e1bc98 Add queues will alternative fetch orders (priority based and stack based). by Raymond Hettinger · 17 years ago
  40. 0f75f98 Use 'g' instead of 'D' as the ctypes typecode for c_longdouble, for by Thomas Heller · 17 years ago
  41. 415c1e3 Raise a TypeError instead of a ValueError when too many initializers by Thomas Heller · 17 years ago
  42. 02ec289 Raise a TypeError if conflicting positional and named arguments are by Thomas Heller · 17 years ago
  43. 902d307 Convert the internal ctypes array type cache to a WeakValueDict so by Thomas Heller · 17 years ago
  44. c8acc88 Docstring typos by Andrew M. Kuchling · 17 years ago
  45. ff0f267 test_doctest fails since r59984. by Amaury Forgeot d'Arc · 17 years ago
  46. f59e962 Refactor if/elif chain for clarity and speed. Remove dependency on subclasses having to implement _empty and _full. by Raymond Hettinger · 17 years ago
  47. cad3724 Issue #1786 (by myself): pdb should use its own stdin/stdout around an by Guido van Rossum · 17 years ago
  48. d7b0033 Add rational.Rational as an implementation of numbers.Rational with infinite by Jeffrey Yasskin · 17 years ago
  49. cbf8f6c Temporarily revert 59967 until GC can be added. by Raymond Hettinger · 17 years ago
  50. c216df9 Issue 1820: structseq objects did not work with the % formatting operator or isinstance(t, tuple). by Raymond Hettinger · 17 years ago
  51. 7ce9b18 Typo fixes by Andrew M. Kuchling · 17 years ago
  52. 351e1a3 Fix 1698398: Zipfile.printdir() crashed because the format string expected a tuple object of length six instead of a time.struct_time object. by Raymond Hettinger · 17 years ago
  53. c94e2b5 Now that I've learnt about structseq objects I felt like converting sys.float_info to a structseq. It's by Christian Heimes · 17 years ago
  54. f31b69f Applied patch #1816: sys.flags patch by Christian Heimes · 17 years ago
  55. 9c20196 Added new an better structseq representation. E.g. repr(time.gmtime(0)) now returns 'time.struct_time(tm_year=1970, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=3, tm_yday=1, tm_isdst=0)' instead of '(1970, 1, 1, 0, 0, 0, 3, 1, 0)'. The feature is part of #1816: sys.flags by Christian Heimes · 17 years ago
  56. 9e0f116 Check in the patch proposed by Ben Hayden (benjhayden) for issue by Ka-Ping Yee · 17 years ago
  57. 59bc20b Issue 1780: Allow leading and trailing whitespace in Decimal constructor, by Mark Dickinson · 17 years ago
  58. c682614 Raise an error instead of crashing with a segfault when a NULL by Thomas Heller · 17 years ago
  59. 0f6a656 Speed-up and simplify code urlparse's result objects. by Raymond Hettinger · 17 years ago
  60. 0ff4daf Improve usability of the SequenceMatcher by returning named tuples describing match ranges. by Raymond Hettinger · 17 years ago
  61. e896acc Let most inspect functions return named tuples by Raymond Hettinger · 17 years ago
  62. 097a190 Have Decimal.as_tuple return a named tuple. by Raymond Hettinger · 17 years ago
  63. fff4e6e Doctest results return a named tuple for readability by Raymond Hettinger · 17 years ago
  64. d1ef854 Run doctests on the collections module by Raymond Hettinger · 17 years ago
  65. 15b5e55 Neaten-up the named tuple docs by Raymond Hettinger · 17 years ago
  66. d08a8eb Closing issue1761. by Amaury Forgeot d'Arc · 17 years ago
  67. e850c46 Clarify how to add a field to a named tuple. by Raymond Hettinger · 17 years ago
  68. e165508 Examples for named tuple subclassing should include __slots__ by Raymond Hettinger · 17 years ago
  69. 3403f15 Fixed #1776. __import__() no longer imports modules by file name by Christian Heimes · 17 years ago
  70. b39a756 Added __enter__ and __exit__ functions to HKEY object by Christian Heimes · 17 years ago
  71. e0a49b6 Patch 1137: allow assigning to .buffer_size attribute of PyExpat.parser objects by Andrew M. Kuchling · 17 years ago
  72. 52b2579 Issue #1757: The hash of a Decimal instance is no longer affected by Facundo Batista · 17 years ago
  73. f66f95d It's verbose, not debug by Christian Heimes · 17 years ago
  74. 5816714 Expand comment. by Raymond Hettinger · 17 years ago
  75. f5e8af1 Use get() instead of pop() for the optimized version of _replace(). by Raymond Hettinger · 17 years ago
  76. 9a35921 Cleanup named tuple subclassing example. by Raymond Hettinger · 17 years ago
  77. 4d7e670 Fixed indention problem that caused the second TIPC test to run on systems without TIPC by Christian Heimes · 17 years ago
  78. 62416bc #467924, patch by Alan McIntyre: Add ZipFile.extract and ZipFile.extractall. by Georg Brandl · 17 years ago
  79. fb2d25a Issue #1646: Make socket support TIPC. The socket module now has support by Christian Heimes · 17 years ago
  80. dc55f35 Add another named tuple subclassing example. by Raymond Hettinger · 17 years ago
  81. fd1c245 Fix issue 1747: allow classic classes to be checked for being subclasses of by Jeffrey Yasskin · 17 years ago
  82. 1db6f80 Cleanup subclassing example to more clearly show fixed-width print format. by Raymond Hettinger · 17 years ago
  83. b8e0072 Add subclassing example to docs for named tuples. by Raymond Hettinger · 17 years ago
  84. 844f71b Speed-up named tuple's _make() constructor. by Raymond Hettinger · 17 years ago
  85. e260ba2 #1325: Add docs and tests for zipimporter.archive and zipimporter.prefix. by Georg Brandl · 17 years ago
  86. c45346f #1591: Clarify docstring of Popen3. by Georg Brandl · 17 years ago
  87. 183a084 #1742: don't raise exception on os.path.relpath("a", "a"), but return os.curdir. by Georg Brandl · 17 years ago
  88. e2a902c #1696393: don't check for '.' and '..' in ntpath.walk since by Georg Brandl · 17 years ago
  89. 1166872 Small code simplification. Forgot that classmethods can be called from intances. by Raymond Hettinger · 17 years ago
  90. c6a04c2 Patch #1637: fix urlparse for URLs like 'http://x.com?arg=/foo'. by Guido van Rossum · 17 years ago
  91. f725b95 Doc patch #1730 from Robin Stocker; minor corrections mostly to os.rst. by Georg Brandl · 17 years ago
  92. 0589914 Fix comment typo by Andrew M. Kuchling · 17 years ago
  93. 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 17 years ago
  94. f7476c4 clean up a comment by Fred Drake · 17 years ago
  95. 1b50fd7 Add error-checking to namedtuple's _replace() method. by Raymond Hettinger · 17 years ago
  96. 02740f7 Improve namedtuple's _cast() method with a docstring, new name, and error-checking. by Raymond Hettinger · 17 years ago
  97. ced4eb0 Patch #1698 by Senthil: allow '@' in username when parsed by urlparse.py. by Guido van Rossum · 17 years ago
  98. 3b83549 Patch #1725 by Mark Dickinson, fixes incorrect conversion of -1e1000 by Guido van Rossum · 17 years ago
  99. a47b75b socket.ioctl is only available on Windows by Christian Heimes · 17 years ago
  100. 04ae916 Added interface to Windows' WSAIoctl and a simple example for a network sniffer. by Christian Heimes · 17 years ago