1. 82b34c5 Issue #5211: Fix complex type to avoid implicit calls to by Mark Dickinson · 15 years ago
  2. 51f1204 Issue 7970: When email.Parser.Parser parses a MIME message of type by R. David Murray · 15 years ago
  3. 4cc80ca #3426: os.path.abspath now returns unicode when its arg is unicode. by Ezio Melotti · 15 years ago
  4. 6d8effb Issue #7633: Context method in the decimal module (with the exception by Mark Dickinson · 15 years ago
  5. 413fabc Stop providing crtassem.h symbols when compiling with by Martin v. Löwis · 15 years ago
  6. 7875ef6 Issue #7903: Define _BSD_SOURCE through OpenBSD 4.9. by Martin v. Löwis · 15 years ago
  7. 5e2dd86 Issue #3920: Define _BSD_SOURCE on OpenBSD 4.4. by Martin v. Löwis · 15 years ago
  8. 63e4fd7 Issue 7835: Shelve's __del__ method calls its close method, and its by R. David Murray · 16 years ago
  9. 8f6a287 #7712: add a temp_cwd context manager to test_support and use it in regrtest to run all the tests in a temporary directory, saving the original CWD in test_support.SAVEDCWD. Thanks to Florent Xicluna who helped with the patch. by Ezio Melotti · 16 years ago
  10. db43b5a Issue 7893 and Issue 7588 by Michael Foord · 16 years ago
  11. 42fb6ab Issue #2746: Don't escape ampersands and angle brackets ("&", "<", ">") by Antoine Pitrou · 16 years ago
  12. dd25e86 Issue 6003: ZipFile.writestr "compression_type" argument by Ronald Oussoren · 16 years ago
  13. 64e8b97 Issue #7869: logging: improved format-time diagnostics and removed some 1.5.2 support code. by Vinay Sajip · 16 years ago
  14. 657514a Issue #7868: logging: added loggerClass attribute to Manager. by Vinay Sajip · 16 years ago
  15. 2d798ac post release updates by Benjamin Peterson · 16 years ago
  16. a7be9d2 bump version to 2.7a3 by Benjamin Peterson · 16 years ago
  17. ce6e4b0 issue #7728: test_timeout was using a hardcoded port, which was by R. David Murray · 16 years ago
  18. b1e66ee Resolve bug 7847 by including documentation for -J, -U, and -X under "Options by Barry Warsaw · 16 years ago
  19. bb445a1 Issue #5677: Explicitly forbid write operations on read-only file objects, by Antoine Pitrou · 16 years ago
  20. 565d785 normalize exceptions passed to the __exit__ method #7853 by Benjamin Peterson · 16 years ago
  21. 0e6e97d Issue #7851: logging: clarification on logging configuration files. by Vinay Sajip · 16 years ago
  22. d840e51 Issue #4772: Raise a ValueError when an unknown Bluetooth protocol is by Antoine Pitrou · 16 years ago
  23. 28c382f Logging: Implemented PEP 391. by Vinay Sajip · 16 years ago
  24. 526e421 Issue #7385: Fix a crash in `MemoryView_FromObject` when by Antoine Pitrou · 16 years ago
  25. b4b0a29 Issue #7819: Check sys.call_tracing() arguments types. by Victor Stinner · 16 years ago
  26. f3fa074 - Issue #6939: Fix file I/O objects in the `io` module to keep the original by Antoine Pitrou · 16 years ago
  27. 626d92a - Update python manual page (options -B, -O0, -s, environment variables by Matthias Klose · 16 years ago
  28. a36507c Issue #7767: Add new C-API function PyLong_AsLongLongAndOverflow, a by Mark Dickinson · 16 years ago
  29. 36ecd67 Issue #7788: Fix a crash produced by deleting a list slice with huge by Mark Dickinson · 16 years ago
  30. e06f711 an -> a by Benjamin Peterson · 16 years ago
  31. 9ef7d4f add compat note by Benjamin Peterson · 16 years ago
  32. 94c33eb Issue #7610: Reworked implementation of the internal by Antoine Pitrou · 16 years ago
  33. 654ade3 Issue #6963: Added maxtasksperchild argument to multiprocessing.Pool by Jesse Noller · 16 years ago
  34. 2deb5c7 raise a clear TypeError when trying to register a non-class by Benjamin Peterson · 16 years ago
  35. ee931b7 Issue #7766: Change sys.getwindowsversion() return value to a named tuple and add the additional members returned in an OSVERSIONINFOEX structure. The new members are service_pack_major, service_pack_minor, suite_mask, and product_type. by Eric Smith · 16 years ago
  36. 82230f9 Add a news entry for the functions verify and vereq that have been removed in r77729 and r77731 by Ezio Melotti · 16 years ago
  37. a43f34c fix an UnboundLocalError when the release file is empty #7773 by Benjamin Peterson · 16 years ago
  38. f14c7fc Fixed #7748: now upload and register commands don't need to force the encoding anymore : DistributionMetada returns utf8 strings by Tarek Ziadé · 16 years ago
  39. 0d948ac - Expat: Fix DoS via XML document with malformed UTF-8 sequences by Matthias Klose · 16 years ago
  40. 3b0f9b0 - Mention CVE-2009-3720 for change in r74429. by Matthias Klose · 16 years ago
  41. c07336c Add a NEWS entry for r77599 and r77600. by Antoine Pitrou · 16 years ago
  42. 9481c57 Issue #7632: When Py_USING_MEMORY_DEBUGGER is defined, disable the by Mark Dickinson · 16 years ago
  43. a55af9a - Issue #7658: Ensure that the new pythonw executable works on OSX 10.4 by Ronald Oussoren · 16 years ago
  44. 23df3d2 Issue #7632: Fix a memory leak in _Py_dg_strtod. by Mark Dickinson · 16 years ago
  45. e80a6a4 Issue #7561: Operations on empty bytearrays (such as `int(bytearray())`) by Antoine Pitrou · 16 years ago
  46. 3373a3a typo: use one instead instead of two by Ezio Melotti · 16 years ago
  47. 476279f Issue #7632: Fix a serious wrong output bug for string -> float conversion. by Mark Dickinson · 16 years ago
  48. ed44dfa Issue #1670765: Prevent email.generator.Generator from re-wrapping by R. David Murray · 16 years ago
  49. 334ffe8 Fixed issue-number mistake in NEWS update. by Vinay Sajip · 16 years ago
  50. c391ad0 Issue #7701: Fix crash in binascii.b2a_uu() in debug mode when given a by Antoine Pitrou · 16 years ago
  51. 3ffa43d The silencing of DeprecationWarning was not taking -3 into consideration. Since by Brett Cannon · 16 years ago
  52. efdddd3 Issue #3299: Fix possible crash in the _sre module when given bad by Antoine Pitrou · 16 years ago
  53. fd3a60d Issue #7703: Add support for the new buffer API to functions of the by Antoine Pitrou · 16 years ago
  54. 5a9112c Issue #2846: Add support for gzip.GzipFile reading zero-padded files. by Antoine Pitrou · 16 years ago
  55. 8c510e7 Issue #7661: Allow ctypes to be built from a non-ASCII directory path. by Antoine Pitrou · 16 years ago
  56. 6467213 Issue #7622: Improve the split(), rsplit(), splitlines() and replace() by Antoine Pitrou · 16 years ago
  57. 5ff4f27 Issue #7632: Fix a bug in dtoa.c that could lead to incorrectly-rounded results. by Mark Dickinson · 16 years ago
  58. 8efef5c Issue #7632: Fix a problem with _Py_dg_strtod that could lead to by Mark Dickinson · 16 years ago
  59. b5689de #5827: make sure that normpath preserves unicode by Ezio Melotti · 16 years ago
  60. 69eb516 Issue #1967: Backport dictionary views. by Alexandre Vassalotti · 16 years ago
  61. 7a8df80 Add missing NEWS entry for r77422. by Alexandre Vassalotti · 16 years ago
  62. dc0f487 Fixed #5372: .o files are now always rebuilt because file age test don't work in some case by Tarek Ziadé · 16 years ago
  63. 6fdd3dc DeprecationWarning is now silent by default. by Brett Cannon · 16 years ago
  64. ee936a2 Issue #2335: Backport set literals syntax from Python 3.x. by Alexandre Vassalotti · 16 years ago
  65. dd6d92a post release version adjustment by Benjamin Peterson · 16 years ago
  66. aa7e51f bump version to 2.7a2 by Benjamin Peterson · 16 years ago
  67. c25417f Fixed #7617: all flavors of gcc should be recognized now by Tarek Ziadé · 16 years ago
  68. 8015725 Issue #7092: Remove py3k warning when importing cPickle. 2to3 handles by Antoine Pitrou · 16 years ago
  69. 5458418 Fix reattribution mistake when fixing attribution mistake! by Antoine Pitrou · 16 years ago
  70. 254d23f Fix attribution. Florent actually repackaged and reviewed Victor's patch (sorry!). by Antoine Pitrou · 16 years ago
  71. 0d423b8 Issue #7455: Fix possible crash in cPickle on invalid input. Patch by by Antoine Pitrou · 16 years ago
  72. b9d4963 Issue #7092: Fix the DeprecationWarnings emitted by the standard library by Antoine Pitrou · 16 years ago
  73. ecdae19 do correct lookup of the __complex__ method by Benjamin Peterson · 16 years ago
  74. 673ddf9 Issue #7471: Improve the performance of GzipFile's buffering mechanism, by Antoine Pitrou · 16 years ago
  75. 9d32521 issue3972: HTTPConnection and HTTPSConnection now support a by Gregory P. Smith · 16 years ago
  76. 79a3eb1 Adds an optional source_address parameter to socket.create_connection(). by Gregory P. Smith · 16 years ago
  77. 92c58ae Fix typo. by Georg Brandl · 16 years ago
  78. fe32d30 mention the r77252 change by Gregory P. Smith · 16 years ago
  79. 5b7139a Issue #7462: Implement the stringlib fast search algorithm for the `rfind`, by Antoine Pitrou · 16 years ago
  80. f477b93 Update Windows build to sqlite 3.6.21. by Martin v. Löwis · 16 years ago
  81. 1b34d25 Issue #5080: turn the DeprecationWarning from float arguments passed by Mark Dickinson · 16 years ago
  82. edfe72f allow --with-dbmliborder to specify that no dbm modules will be built #6491 by Benjamin Peterson · 16 years ago
  83. 6c99b4e fix indentation by Benjamin Peterson · 16 years ago
  84. b4abef6 add note by Benjamin Peterson · 16 years ago
  85. 2c19674 add a --with-system-expat option to build pyexpat against the system's lib #7609 by Benjamin Peterson · 16 years ago
  86. 0f02d39 check if the attribute is set before deleting it with T_OBJECT_EX (fixes #7604) by Benjamin Peterson · 16 years ago
  87. 99d652e Issue #7534: Fix handling of nans, infinities, and negative zero in ** by Mark Dickinson · 16 years ago
  88. 569e61f #5511: Added the ability to use ZipFile as a context manager. Patch by Brian Curtin. by Ezio Melotti · 16 years ago
  89. 500ce23 only build the nis module when the headers are found #7589 by Benjamin Peterson · 16 years ago
  90. c8a2ce7 #7579: Add docstrings to the msvcrt module by Amaury Forgeot d'Arc · 16 years ago
  91. 8645a5c #7413: Passing '\0' as the separator to datetime.datetime.isoformat() by Amaury Forgeot d'Arc · 16 years ago
  92. 740cdc3 #7033: add new API function PyErr_NewExceptionWithDoc, for easily giving new exceptions a docstring. by Georg Brandl · 16 years ago
  93. 4657283 Issue #1811: Improve accuracy and consistency of true division for integers. by Mark Dickinson · 16 years ago
  94. f84caf4 #6108: unicode(exception) and str(exception) should return the same message by Ezio Melotti · 16 years ago
  95. ca8e7ec Unittests and news items for the patch in r77026. by Ronald Oussoren · 16 years ago
  96. b5afe54 Fix for issue #7541: python-config --ldflags doesn't pick up libpython2.5.a by Ronald Oussoren · 16 years ago
  97. 92919a6 Issue #6834: replace the implementation for the 'python' and 'pythonw' executables on OSX. by Ronald Oussoren · 16 years ago
  98. 0479eb5 added a note about #7556 in Misc/NEWS by Tarek Ziadé · 16 years ago
  99. b4261d5 Add NEWS for OpenSSL changes. by Martin v. Löwis · 16 years ago
  100. e31d300 Issue #7528: Backport PyLong_AsLongAndOverflow from py3k to trunk. by Mark Dickinson · 16 years ago