1. 14404b6 Fix #1679: "0x" was taken as a valid integer literal. by Georg Brandl · 18 years ago
  2. 873c985 Fix #1693149. Now you can pass several modules separated by by Facundo Batista · 18 years ago
  3. 5c60bfc Patch #976880: add mmap .rfind() method, and 'end' paramter to .find(). by Andrew M. Kuchling · 18 years ago
  4. 6c29be5 Disabled test_xmlrpc:test_404. It's causing lots of false alarms. by Christian Heimes · 18 years ago
  5. e45a77a Patch #742598 from Michael Pomraning: add .timeout attribute to SocketServer that will call by Andrew M. Kuchling · 18 years ago
  6. 95016e7 Update for threading.local test. by Christian Heimes · 18 years ago
  7. 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 · 18 years ago
  8. 2b1b195 Fix issue #1822: MIMEMultipart.is_multipart() behaves correctly for a by Facundo Batista · 18 years ago
  9. 45169fb Several tweaks: add construction from strings and .from_decimal(), change by Jeffrey Yasskin · 18 years ago
  10. bf4c7c8 This got fixed for classic classes in r60057, and backported to 2.5.2 in 60056. by Guido van Rossum · 18 years ago
  11. 288e89a Added bytes and b'' as aliases for str and '' by Christian Heimes · 18 years ago
  12. 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 · 18 years ago
  13. 44bd6c0 Issue #1861: Add read-only attribute listing upcoming events in the order they will be run. by Raymond Hettinger · 18 years ago
  14. bde4ae4 Fixes (accepts patch) issue1339 - http://bugs.python.org/issue1339 by Gregory P. Smith · 18 years ago
  15. 63bfc1d Comply with RFC 3207. Fixes issue 829951 - http://bugs.python.org/issue829951 by Gregory P. Smith · 18 years ago
  16. 4731709 Make starmap() match its pure python definition and accept any itertable input (not just tuples). by Raymond Hettinger · 18 years ago
  17. 9e1bc98 Add queues will alternative fetch orders (priority based and stack based). by Raymond Hettinger · 18 years ago
  18. 0f75f98 Use 'g' instead of 'D' as the ctypes typecode for c_longdouble, for by Thomas Heller · 18 years ago
  19. 415c1e3 Raise a TypeError instead of a ValueError when too many initializers by Thomas Heller · 18 years ago
  20. 02ec289 Raise a TypeError if conflicting positional and named arguments are by Thomas Heller · 18 years ago
  21. 902d307 Convert the internal ctypes array type cache to a WeakValueDict so by Thomas Heller · 18 years ago
  22. c8acc88 Docstring typos by Andrew M. Kuchling · 18 years ago
  23. ff0f267 test_doctest fails since r59984. by Amaury Forgeot d'Arc · 18 years ago
  24. f59e962 Refactor if/elif chain for clarity and speed. Remove dependency on subclasses having to implement _empty and _full. by Raymond Hettinger · 18 years ago
  25. cad3724 Issue #1786 (by myself): pdb should use its own stdin/stdout around an by Guido van Rossum · 18 years ago
  26. d7b0033 Add rational.Rational as an implementation of numbers.Rational with infinite by Jeffrey Yasskin · 18 years ago
  27. cbf8f6c Temporarily revert 59967 until GC can be added. by Raymond Hettinger · 18 years ago
  28. c216df9 Issue 1820: structseq objects did not work with the % formatting operator or isinstance(t, tuple). by Raymond Hettinger · 18 years ago
  29. 7ce9b18 Typo fixes by Andrew M. Kuchling · 18 years ago
  30. 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 · 18 years ago
  31. c94e2b5 Now that I've learnt about structseq objects I felt like converting sys.float_info to a structseq. It's by Christian Heimes · 18 years ago
  32. f31b69f Applied patch #1816: sys.flags patch by Christian Heimes · 18 years ago
  33. 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 · 18 years ago
  34. 9e0f116 Check in the patch proposed by Ben Hayden (benjhayden) for issue by Ka-Ping Yee · 18 years ago
  35. 59bc20b Issue 1780: Allow leading and trailing whitespace in Decimal constructor, by Mark Dickinson · 18 years ago
  36. c682614 Raise an error instead of crashing with a segfault when a NULL by Thomas Heller · 18 years ago
  37. 0f6a656 Speed-up and simplify code urlparse's result objects. by Raymond Hettinger · 18 years ago
  38. 0ff4daf Improve usability of the SequenceMatcher by returning named tuples describing match ranges. by Raymond Hettinger · 18 years ago
  39. e896acc Let most inspect functions return named tuples by Raymond Hettinger · 18 years ago
  40. 097a190 Have Decimal.as_tuple return a named tuple. by Raymond Hettinger · 18 years ago
  41. fff4e6e Doctest results return a named tuple for readability by Raymond Hettinger · 18 years ago
  42. d1ef854 Run doctests on the collections module by Raymond Hettinger · 18 years ago
  43. 15b5e55 Neaten-up the named tuple docs by Raymond Hettinger · 18 years ago
  44. d08a8eb Closing issue1761. by Amaury Forgeot d'Arc · 18 years ago
  45. e850c46 Clarify how to add a field to a named tuple. by Raymond Hettinger · 18 years ago
  46. e165508 Examples for named tuple subclassing should include __slots__ by Raymond Hettinger · 18 years ago
  47. 3403f15 Fixed #1776. __import__() no longer imports modules by file name by Christian Heimes · 18 years ago
  48. b39a756 Added __enter__ and __exit__ functions to HKEY object by Christian Heimes · 18 years ago
  49. e0a49b6 Patch 1137: allow assigning to .buffer_size attribute of PyExpat.parser objects by Andrew M. Kuchling · 18 years ago
  50. 52b2579 Issue #1757: The hash of a Decimal instance is no longer affected by Facundo Batista · 18 years ago
  51. f66f95d It's verbose, not debug by Christian Heimes · 18 years ago
  52. 5816714 Expand comment. by Raymond Hettinger · 18 years ago
  53. f5e8af1 Use get() instead of pop() for the optimized version of _replace(). by Raymond Hettinger · 18 years ago
  54. 9a35921 Cleanup named tuple subclassing example. by Raymond Hettinger · 18 years ago
  55. 4d7e670 Fixed indention problem that caused the second TIPC test to run on systems without TIPC by Christian Heimes · 18 years ago
  56. 62416bc #467924, patch by Alan McIntyre: Add ZipFile.extract and ZipFile.extractall. by Georg Brandl · 18 years ago
  57. fb2d25a Issue #1646: Make socket support TIPC. The socket module now has support by Christian Heimes · 18 years ago
  58. dc55f35 Add another named tuple subclassing example. by Raymond Hettinger · 18 years ago
  59. fd1c245 Fix issue 1747: allow classic classes to be checked for being subclasses of by Jeffrey Yasskin · 18 years ago
  60. 1db6f80 Cleanup subclassing example to more clearly show fixed-width print format. by Raymond Hettinger · 18 years ago
  61. b8e0072 Add subclassing example to docs for named tuples. by Raymond Hettinger · 18 years ago
  62. 844f71b Speed-up named tuple's _make() constructor. by Raymond Hettinger · 18 years ago
  63. e260ba2 #1325: Add docs and tests for zipimporter.archive and zipimporter.prefix. by Georg Brandl · 18 years ago
  64. c45346f #1591: Clarify docstring of Popen3. by Georg Brandl · 18 years ago
  65. 183a084 #1742: don't raise exception on os.path.relpath("a", "a"), but return os.curdir. by Georg Brandl · 18 years ago
  66. e2a902c #1696393: don't check for '.' and '..' in ntpath.walk since by Georg Brandl · 18 years ago
  67. 1166872 Small code simplification. Forgot that classmethods can be called from intances. by Raymond Hettinger · 18 years ago
  68. c6a04c2 Patch #1637: fix urlparse for URLs like 'http://x.com?arg=/foo'. by Guido van Rossum · 18 years ago
  69. f725b95 Doc patch #1730 from Robin Stocker; minor corrections mostly to os.rst. by Georg Brandl · 18 years ago
  70. 0589914 Fix comment typo by Andrew M. Kuchling · 18 years ago
  71. 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 18 years ago
  72. f7476c4 clean up a comment by Fred Drake · 18 years ago
  73. 1b50fd7 Add error-checking to namedtuple's _replace() method. by Raymond Hettinger · 18 years ago
  74. 02740f7 Improve namedtuple's _cast() method with a docstring, new name, and error-checking. by Raymond Hettinger · 18 years ago
  75. ced4eb0 Patch #1698 by Senthil: allow '@' in username when parsed by urlparse.py. by Guido van Rossum · 18 years ago
  76. 3b83549 Patch #1725 by Mark Dickinson, fixes incorrect conversion of -1e1000 by Guido van Rossum · 18 years ago
  77. a47b75b socket.ioctl is only available on Windows by Christian Heimes · 18 years ago
  78. 04ae916 Added interface to Windows' WSAIoctl and a simple example for a network sniffer. by Christian Heimes · 18 years ago
  79. 2ee1c76 Issue #1735: TarFile.extractall() now correctly sets by Lars Gustäbel · 18 years ago
  80. 0687561 Bug #1713: posixpath.ismount() claims symlink to a mountpoint is a mountpoint. by Christian Heimes · 18 years ago
  81. 737c73f Make math.{floor,ceil}({int,long}) return float again for backwards by Jeffrey Yasskin · 18 years ago
  82. e0734e7 Minor fix-ups to named tuples: by Raymond Hettinger · 18 years ago
  83. 76d19f6 Added _struct._clearcache() for regression tests by Christian Heimes · 18 years ago
  84. f2f41eb Fixed refleak tests for _struct changes by Christian Heimes · 18 years ago
  85. 8267d1d Bug #1481296: Fixed long(float('nan'))!=0L. by Christian Heimes · 18 years ago
  86. 0613188 Fixed #1687: plistlib.py restricts <integer> to Python int when writing by Christian Heimes · 18 years ago
  87. 2f6621c Finish-up the struct module optimizations started at the Iceland NFS sprint. by Raymond Hettinger · 18 years ago
  88. eebb79c Added copysign(x, y) function to the math module by Christian Heimes · 18 years ago
  89. e2ca424 Added math.isinf() and math.isnan() by Christian Heimes · 18 years ago
  90. ae04c33 Issue #1700, reported by Nguyen Quan Son, fix by Fredruk Lundh: by Guido van Rossum · 18 years ago
  91. 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 18 years ago
  92. 27edd82 Patch #1696. Don't attempt to close None in dry-run mode. by Guido van Rossum · 18 years ago
  93. 0a11232 Change docstrings to comments so test output will display normally. by Kurt B. Kaiser · 18 years ago
  94. 0f7c25d Issue1177 by Kurt B. Kaiser · 18 years ago
  95. f5d902f Always convert Text.index result to string. by Martin v. Löwis · 18 years ago
  96. 9a1d8ce Added support for new Windows build dirs in PC/ to distutils.sysconfig by Christian Heimes · 18 years ago
  97. 96b3249 Fix an odd error which would only occur close to new year's eve, due by Guido van Rossum · 18 years ago
  98. cdaa2cb Added wininst-9.0.exe executable for VS 2008 by Christian Heimes · 18 years ago
  99. 28c7bcf Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat. by Kurt B. Kaiser · 18 years ago
  100. a6e515b Remove a straggling debugging print line. by Brett Cannon · 18 years ago