1. b028f50 Fix issue 3221 by emitting a RuntimeWarning instead of raising SystemError when the parent module can't be found during an absolute import (likely due to non-PEP 361 aware code which sets a module level __package__ attribute) by Nick Coghlan · 16 years ago
  2. 38469e2 Make test.test_support.catch_warnings more robust as discussed on python-dev. Also add explicit tests for itto test_warnings. by Nick Coghlan · 16 years ago
  3. 3d0b9f0 dummy_thread.acquire() would return None if no waitflag argument was given. It by Brett Cannon · 16 years ago
  4. 0522a9f #1778443 robotparser fixes from Aristotelis Mikropoulos by Benjamin Peterson · 16 years ago
  5. feef51d Fix a minor typo in the last entry made. by Brett Cannon · 16 years ago
  6. 963ffdb Doc that robotparse has been renamed urllib.robotparser in Python 3.0. by Brett Cannon · 16 years ago
  7. f6afa33 Doc that urlparse is named urllib.parse in Python 3.0. by Brett Cannon · 16 years ago
  8. 97aa1ae Document the fact that urllib2 spans multiple modules with new names in Python by Brett Cannon · 16 years ago
  9. ea40c58 Removal an invalid entry as the fixer for urllib is under active development. by Brett Cannon · 16 years ago
  10. cc3f2b1 Wording changes by Andrew M. Kuchling · 16 years ago
  11. b01713e Issue 3285: Fractions from_float() and from_decimal() accept Integral arguments. by Raymond Hettinger · 16 years ago
  12. 3cd1e42 Issue 3301: Bisect functions behaved badly when lo was negative. by Raymond Hettinger · 16 years ago
  13. 14ff994 Add missing NEWS and ACK entries for r64791 by Nick Coghlan · 16 years ago
  14. c4691ec - Issue #3094: httplib.HTTPSConnection Host: headers no longer include the by Gregory P. Smith · 16 years ago
  15. 3b1e6b2 - Issue #3309: Fix bz2.BZFile itererator to release its internal lock by Gregory P. Smith · 16 years ago
  16. 0f7cddc Issue839496: SimpleHTTPServer should open all files in binary mode. by Amaury Forgeot d'Arc · 16 years ago
  17. f414064 - Issue #2113: Fix error in subprocess.Popen if the select system call is by Gregory P. Smith · 16 years ago
  18. 2fe7706 - Issue #2862: Make int and float freelist management consistent with other by Gregory P. Smith · 16 years ago
  19. e78fbcc #2663: support an *ignore* argument to shutil.copytree(). Patch by Tarek Ziade. by Georg Brandl · 16 years ago
  20. 8c43641 Patch #1622: Correct interpretation of various ZIP header fields. by Martin v. Löwis · 16 years ago
  21. 66c5277 Issue #449227: Now with the rlcompleter module, callable objects are by Facundo Batista · 16 years ago
  22. c060b0e Issue 3190: pydoc now hides module __package__ attributes by Nick Coghlan · 16 years ago
  23. 8bb8fa5 Handle urllib's renaming for Python 3.0: by Brett Cannon · 16 years ago
  24. bdd941f #3242: fix a crash in "print", if sys.stdout is set to a custom object, by Amaury Forgeot d'Arc · 16 years ago
  25. 175e4d9 #3219 repeated keyword arguments aren't allowed in function calls anymore by Benjamin Peterson · 16 years ago
  26. 1f40c8a #Issue3088 in-progress: Race condition with instances of classes derived from threading.local: by Amaury Forgeot d'Arc · 16 years ago
  27. d84fd95 Issue #3215: Build sqlite3 as sqlite3.dll, not sqlite3.pyd by Martin v. Löwis · 16 years ago
  28. 1e02268 Updated to reflect change in logging.config to remove out-of-date comment in _install_handlers and the use of issubclass in place of equality comparison of classes. by Vinay Sajip · 16 years ago
  29. f145848 Add Jean Brouwers for his work on math.sum by Mark Dickinson · 16 years ago
  30. dea1b56 warnings.warn_explicit() did not have the proper TypeErrors in place to prevent by Brett Cannon · 16 years ago
  31. 9c437af Revert 64424, 64438, and 64439. by Raymond Hettinger · 16 years ago
  32. 2126bab Wording fix by Andrew M. Kuchling · 16 years ago
  33. 5596b0c Issue #2722. Now the char buffer to support the path string has by Facundo Batista · 16 years ago
  34. a6a4d50 Now a from submitted via POST that also has a query string by Facundo Batista · 16 years ago
  35. 2da91c3 Fixed issue #2888. Now the behaviour of pprint when working with nested by Facundo Batista · 16 years ago
  36. e0e7114 Issue 3008: hex/oct/bin can show floats exactly. by Raymond Hettinger · 16 years ago
  37. 1ec2fcd Issue #3004: Minor fix to slice.indices(). slice(-10).indices(9) now by Mark Dickinson · 16 years ago
  38. e3ae655 Make bin() implementation parallel oct() and hex() so that int/long subclasses can override or so that other classes can support. by Raymond Hettinger · 16 years ago
  39. 8dc20fd Updated with fix for #3136. by Vinay Sajip · 16 years ago
  40. b5d1740 Bumping to 2.6b1 by Barry Warsaw · 16 years ago
  41. 9828b7e Updated with fix for #3126. by Vinay Sajip · 16 years ago
  42. d0ba073 Add Jesse Noller to the developers list. by Georg Brandl · 16 years ago
  43. a8919fe Issue 3110: Crash with weakref subclass, by Amaury Forgeot d'Arc · 16 years ago
  44. 305480c Issue 3116: fix quadratic behavior in marshal.dumps(). by Raymond Hettinger · 16 years ago
  45. cc0f2b2 Switch to SQLite 3.5.9. by Martin v. Löwis · 16 years ago
  46. a4514c3 Switch to bzip2 1.0.5. by Martin v. Löwis · 16 years ago
  47. 5c0be32 platform.uname now tries to fill empty values even when os.uname is present by Benjamin Peterson · 16 years ago
  48. 26305a0 add py3k warnings to rfc822 by Benjamin Peterson · 16 years ago
  49. 7630731 Switch to Tcl/Tk 8.5. by Martin v. Löwis · 16 years ago
  50. a03722f deprecated mimetools by Benjamin Peterson · 16 years ago
  51. 5cc774e Can we agree to put dots at entry ends? Thanks. by Georg Brandl · 16 years ago
  52. 6f7ae69 update ACKS and NEWs for multiprocessing by Benjamin Peterson · 16 years ago
  53. 89f4887 Add future_builtins.ascii(). by Georg Brandl · 16 years ago
  54. f439560 add aliases to threading module by Benjamin Peterson · 16 years ago
  55. 0fbcf69 give the threading API PEP 8 names by Benjamin Peterson · 16 years ago
  56. 4267be6 Multi-arg form for set.difference() and set.difference_update(). by Raymond Hettinger · 16 years ago
  57. 9d53457 Merge in release25-maint r60793: by Gregory P. Smith · 16 years ago
  58. 1cec7aa NEWS entry for: Add an optional 'offset' parameter to byref, defaulting to zero. by Thomas Heller · 16 years ago
  59. 0705bc0 Add Arnaud for his efforts on multi-arg set operations. by Raymond Hettinger · 16 years ago
  60. 8509db5 Add the "ast" module, containing helpers to ease use of the "_ast" classes. by Georg Brandl · 16 years ago
  61. df7036d Add Gregor Lingl. by Martin v. Löwis · 16 years ago
  62. 5c4d3d0 Let set.intersection() and set.intersection_update() take multiple input arguments. by Raymond Hettinger · 16 years ago
  63. ee4bcad Let set.union() and set.update() accept multiple inputs. by Raymond Hettinger · 16 years ago
  64. ecbdd2e Issue #2138: Add math.factorial(). by Raymond Hettinger · 16 years ago
  65. 7be19aa Factor out docstring dedenting from inspect.getdoc() into inspect.cleandoc() by Georg Brandl · 16 years ago
  66. fbb9c0b Issue #1798: Add ctypes calling convention that allows safe access of errno. by Thomas Heller · 16 years ago
  67. 59475e9 Backport from py3k: Implement the new buffer interface from pep3118 by Thomas Heller · 16 years ago
  68. 5640ce2 MacOS X: Enable 4-way universal builds by Ronald Oussoren · 16 years ago
  69. d5bb921 Revert revisions 63943 and 63942 (Issue #1798: Add ctypes calling by Thomas Heller · 16 years ago
  70. e70c337 Issue #1798: Add ctypes calling convention that allows safe access to by Thomas Heller · 16 years ago
  71. 8718459 Patch #1513695: New turtle module, with demos. by Martin v. Löwis · 16 years ago
  72. ffe62ed Patch #2125: Add GetInteger and GetString methods for msilib.Record objects. by Martin v. Löwis · 16 years ago
  73. 137d824 Fix issue 2782: be less strict about the format string type in strftime. by Gregory P. Smith · 16 years ago
  74. 8856dda Adds a Thread.getIdent() method to provide the _get_ident() value for by Gregory P. Smith · 16 years ago
  75. ac19d85 Deprecate htmllib and sgmllib for 3.0. by Georg Brandl · 16 years ago
  76. 51df064 Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. by Robert Schuppenies · 16 years ago
  77. 9981589 New environment variable PYTHONIOENCODING. by Martin v. Löwis · 16 years ago
  78. 6d7702e Implement heapq in terms of less-than (to match list.sort()). by Raymond Hettinger · 16 years ago
  79. adff65b Update the locale module alias table. by Marc-André Lemburg · 16 years ago
  80. 9287acf ctypes NULL function pointers have a boolean False value now. by Thomas Heller · 16 years ago
  81. d0b592f #2985: allow i8 in XMLRPC responses. by Georg Brandl · 16 years ago
  82. abb34fe UserString.MutableString has been removed in Python 3.0. by Brett Cannon · 16 years ago
  83. 74a1dea #2989: add PyType_Modified(). by Georg Brandl · 16 years ago
  84. b1a54a3 Do not close external file objects passed to tarfile.open(mode='w:bz2') by Lars Gustäbel · 16 years ago
  85. dacde0d turn PyErr_WarnPy3k into a macro by Benjamin Peterson · 16 years ago
  86. 7a99061 Updated NEWS by Christian Heimes · 16 years ago
  87. 5d7d6c3 note about r63617 by Gregory P. Smith · 16 years ago
  88. e08e3d0 #2959: allow multiple close() calls for GzipFile. by Georg Brandl · 16 years ago
  89. 392c6fc ConfigParser renaming reversal part 3: move module into place and adapt imports. by Georg Brandl · 16 years ago
  90. a6168f9 Queue renaming reversal part 3: move module into place and by Georg Brandl · 16 years ago
  91. e152a77 socketserver renaming reversal part 3: move the module into the right by Georg Brandl · 16 years ago
  92. 27e4a17 Issue #1390: Raise ValueError in toxml when an invalid comment would by Martin v. Löwis · 16 years ago
  93. 8c255e4 Patch #1722225: Support QNX 6. by Martin v. Löwis · 16 years ago
  94. 2ee0e8e Revert the renaming of repr to reprlib. by Brett Cannon · 16 years ago
  95. 99dfe92 Issue #2819: Add math.sum, a function that sums a sequence of floats by Mark Dickinson · 16 years ago
  96. ca3939c bsddb module updated to version 4.7.0 by Jesus Cea · 16 years ago
  97. 9a8af2d Add Quentin Gallet-Gilles for (at least) a fixer for markupbase. by Brett Cannon · 16 years ago
  98. 10cfc4b Add Robert Schuppenies. by Martin v. Löwis · 16 years ago
  99. c012883 Updated with fixes for #2914 and #2929. by Vinay Sajip · 16 years ago
  100. 88659b0 #2592: delegate nb_index and the floor/truediv slots in weakref.proxy. by Georg Brandl · 16 years ago