1. 9a4030e Issue #10446 NEWS entry by Alexander Belopolsky · 14 years ago
  2. 0ffe6a9 Fix a minor inconsistency in capitalization for the 'No module named' exception by Brett Cannon · 14 years ago
  3. 8fb9b86 Fix #8886. Use context managers throughout the test. by Brian Curtin · 14 years ago
  4. f609654 handle dict subclasses gracefully in PyArg_ValidateKeywordArguments by Benjamin Peterson · 14 years ago
  5. 82e73cb Issue #9518: Extend the PyModuleDef_HEAD_INIT macro to explicitly by David Malcolm · 14 years ago
  6. 664c2d1 Issue #10443: Add the SSLContext.set_default_verify_paths() method. by Antoine Pitrou · 14 years ago
  7. b6d4ee5 Issue #10440: Support RUSAGE_THREAD as a constant in the resource module. by Antoine Pitrou · 14 years ago
  8. dc817b2 Issue #10356: Decimal(-1).__hash__() should equal hash(Decimal(-1)). by Stefan Krah · 14 years ago
  9. dbe7519 Issue #10429: IMAP.starttls() stored the capabilities as bytes objects, by Antoine Pitrou · 14 years ago
  10. 9b0034d Post-release bumps. by Georg Brandl · 14 years ago
  11. 8593ae6 Logging: added stack_info argument. by Vinay Sajip · 14 years ago
  12. 4fbc0d8 Minor edits. by Georg Brandl · 14 years ago
  13. 74ebd9e Fix Issue5111 - Wrap the Ipv6 host with [] in the Host header by Senthil Kumaran · 14 years ago
  14. fec6620 Make Fraction(-1).__hash__() return -2 rather than -1 (see issue 10356). by Mark Dickinson · 14 years ago
  15. 24854ca Bump to 3.2a4. by Georg Brandl · 14 years ago
  16. 7610ef9 Remove myself as a maintainer for curses and mailbox modules. by Andrew M. Kuchling · 14 years ago
  17. f3b001f Issue #4471: Add the IMAP.starttls() method to enable encryption on by Antoine Pitrou · 14 years ago
  18. 6495136 #1466065: add validate option to base64.b64decode by R. David Murray · 14 years ago
  19. b9d10d0 Issue #10386: Added __all__ to token module; this simplifies importing by Alexander Belopolsky · 14 years ago
  20. 1795464 added myself as a maintainer of configparser by Łukasz Langa · 14 years ago
  21. cf9f980 Issue #10372: Import the warnings module only after the IO library is by Antoine Pitrou · 14 years ago
  22. d79f3c8 Issue #4471: Properly shutdown socket in IMAP.shutdown(). Patch by by Antoine Pitrou · 14 years ago
  23. b1436f1 Fix IMAP.login() to work properly. by Antoine Pitrou · 14 years ago
  24. 84c29a2 Remove uneeded NEWS entries for minor documentation updates. by Ask Solem · 14 years ago
  25. ff7ffdd Issue #8028: multiprocessing: Documented that ``Process.terminate`` by Ask Solem · 14 years ago
  26. 518eaa8 Issue #7707: Documented that multiprocessing.Queue operations during by Ask Solem · 14 years ago
  27. e912f5a Added missing NEWS entry for my previous commit (r86370). by Ask Solem · 14 years ago
  28. fb04691 Issue #10022: The dictionary returned by the `getpeercert()` method by Antoine Pitrou · 14 years ago
  29. 859c4ef Make `usenetrc` False by default (the old behaviour of having it True by by Antoine Pitrou · 14 years ago
  30. 1cb121e Issue #1926: Add support for NNTP over SSL on port 563, as well as by Antoine Pitrou · 14 years ago
  31. 58c0752 Issue #10335: Add tokenize.open(), detect the file encoding using by Victor Stinner · 14 years ago
  32. 0cfba09 This was actually fixed for the previous alpha. by Éric Araujo · 14 years ago
  33. 551f02c Add missing NEWS entry for a fix committed by Senthil. by Éric Araujo · 14 years ago
  34. 7dff9e0 #10321: Add support for sending binary DATA and Message objects to smtplib by R. David Murray · 14 years ago
  35. a563392 Move a news entry to the right section (+ light reformatting) by Éric Araujo · 14 years ago
  36. b8bbffd Fix next version name. by Georg Brandl · 14 years ago
  37. ab19bd4 typo: annually->manually by Brian Curtin · 14 years ago
  38. 9aad7fe Removing reference to ftp.python.org and enhancing RPM README. by Sean Reifscheider · 14 years ago
  39. 64bc3b2 Issue #10329: The trace module writes reports using the input Python script by Victor Stinner · 14 years ago
  40. 4ae5f13 Issue #6317: Now winsound.PlaySound only accepts unicode with MvL's approval. by Hirokazu Yamamoto · 14 years ago
  41. 35adf5d Changed entry name because it's hard to merge. by Hirokazu Yamamoto · 14 years ago
  42. c08c9bc Issue #6317: Now winsound.PlaySound can accept non ascii filename. by Hirokazu Yamamoto · 14 years ago
  43. e7cf954 Add missing NEWS entries for some of my commits. by Éric Araujo · 14 years ago
  44. ba7209f Prevent race condition with mkdir in distutils. Patch by Arfrever on #9281. by Éric Araujo · 14 years ago
  45. 909ddbd Add missing NEWS entry for r86239. by Éric Araujo · 14 years ago
  46. 89c0478 Add missing entry for r86223. by Éric Araujo · 14 years ago
  47. 243757e Issue #10180: Pickling file objects is now explicitly forbidden, since by Antoine Pitrou · 14 years ago
  48. 39a6591 Issue #10311: The signal module now restores errno before returning from by Antoine Pitrou · 14 years ago
  49. a078115 Issue #10282: Add a `nntp_implementation` attribute to NNTP objects. by Antoine Pitrou · 14 years ago
  50. 9696088 Issue #10288: The deprecated family of "char"-handling macros by David Malcolm · 14 years ago
  51. 08eeada Issue #10283: Add a `group_pattern` argument to NNTP.list(). by Antoine Pitrou · 14 years ago
  52. 99c4830 Issue #3699: Fix test_bigaddrspace and extend it to test bytestrings by Antoine Pitrou · 14 years ago
  53. aeb6cee Issue #10293: Remove obsolete field in the PyMemoryView structure, by Antoine Pitrou · 14 years ago
  54. 27bbca6 Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.format(**mapping), except mapping does not get converted to a dict. by Eric Smith · 14 years ago
  55. b6d4a8e Implement http://bugs.python.org/issue10155 using And Clover's patch, w/added by Phillip J. Eby · 14 years ago
  56. 7dd1af0 Issue #10285: explain the `flag` return field better in NNTP.list(). by Antoine Pitrou · 14 years ago
  57. 4103bc0 Issue #10281: nntplib now returns None for absent fields in the OVER/XOVER by Antoine Pitrou · 14 years ago
  58. 0a9397f A newline in lineno output breaks pyframe output. by Georg Brandl · 14 years ago
  59. a01799f Update docs (and sample app in wsgiref.simple_server) to reflect PEP 3333. by Phillip J. Eby · 14 years ago
  60. f80b3f7 Issue #10280: NNTP.nntp_version should reflect the highest version by Antoine Pitrou · 14 years ago
  61. ed82ca1 Ditch some dead code in test_unicode_file. by Brett Cannon · 14 years ago
  62. 16f344d Issue #10184: Touch directories only once when extracting a tarfile. by Martin v. Löwis · 14 years ago
  63. ea13d9d Issue #10199: Moved Demo/turtle under Lib/ by Alexander Belopolsky · 14 years ago
  64. 4d98489 Issue #10265: Close file objects explicitly in sunau. Patch by Brian Brazil. by Antoine Pitrou · 14 years ago
  65. 189316a Issue 10110: Let Queue.put recognize a full queue when the maxsize parameter has been reduced. by Raymond Hettinger · 14 years ago
  66. 076ed00 add --enable-loadable-sqlite-extensions #10268 by Benjamin Peterson · 14 years ago
  67. f569826 Issue #10266: uu.decode didn't close in_file explicitly when it was given by Antoine Pitrou · 14 years ago
  68. e974571 Issue #10160: Speed up operator.attrgetter. Patch by Christos Georgiou. by Antoine Pitrou · 14 years ago
  69. 65b4af3 Updated NEWS about logging.basicConfig(). by Vinay Sajip · 14 years ago
  70. b643ef8 Issue #5729: json.dumps to support using '\t' as an indent string by Raymond Hettinger · 14 years ago
  71. bbb0412 if FileIO.__init__ fails, close fd by Benjamin Peterson · 14 years ago
  72. 8d2b51b Issue #10253: FileIO leaks a file descriptor when trying to open a file by Antoine Pitrou · 14 years ago
  73. 6ce29fa Fix test_mailbox by supporting context manager protocol for get_file() returns. by Georg Brandl · 14 years ago
  74. bfa3470 Issue #10246: uu.encode didn't close file objects explicitly when filenames by Antoine Pitrou · 14 years ago
  75. cc2adbc #10198: fix duplicate header when writeframes() is called with an empty string. by Georg Brandl · 14 years ago
  76. dd42154 Issue 10221: Improve error message for dict.pop(). by Raymond Hettinger · 14 years ago
  77. 028011f Silence ResourceWarnings in modulefinder by using file context managers. by Brett Cannon · 14 years ago
  78. 0110578 Add some missing entries related to the various ResourceWarning fixes I have committed. by Brett Cannon · 14 years ago
  79. e1eca4e Issue #10233: Close file objects in a timely manner in the tarfile module by Antoine Pitrou · 14 years ago
  80. 72f4842 Issue #9377: Use Unicode API for gethostname on Windows. by Martin v. Löwis · 14 years ago
  81. 9f62d1c Fix issue 10214 by removing the out of date python-mode.el and replacing it with a README. Will backport to 3.1 and 2.7. by Barry Warsaw · 14 years ago
  82. e033e06 Issue #10093: ResourceWarnings are now issued when files and sockets are by Antoine Pitrou · 14 years ago
  83. 9cbdd75 Add read support for all missing variants of the GNU sparse by Lars Gustäbel · 14 years ago
  84. 07e20ef Issue #5437: A preallocated MemoryError instance should not hold traceback by Antoine Pitrou · 14 years ago
  85. b9a4391 #10218: return timeout status from Condition.wait, mirroring other primitives' behavior. by Georg Brandl · 14 years ago
  86. 4d54088 #7351: add more consistent exception name alias. by Georg Brandl · 14 years ago
  87. b156a46 Issue #8852: Allow the socket module to build on OpenSolaris. by Antoine Pitrou · 14 years ago
  88. 71f8cc9 Add David. by Georg Brandl · 14 years ago
  89. 6b03ee6 Issue #5027: The standard `xml` namespace is now understood by by Antoine Pitrou · 14 years ago
  90. 7424dd3 #5975: add unix_dialect to csv module. by Georg Brandl · 14 years ago
  91. ba488d1 #7761: fix telnetlib.interact failures on Windows. by R. David Murray · 14 years ago
  92. a39c571 logging: Added style option to Formatter to allow %, {} or himBHformatting. by Vinay Sajip · 14 years ago
  93. 7e9065c Issue #10143: Update "os.pathconf" values by Jesus Cea · 14 years ago
  94. 08be72d Add a new warning gategory, ResourceWarning, as discussed on python-dev. It is silent by default, by Georg Brandl · 14 years ago
  95. 543af75 Issue 5178: Add tempfile.TemporaryDirectory (original patch by Neil Schemenauer) by Nick Coghlan · 14 years ago
  96. 503d6c5 remove broken code accounting an offset the size of the line #10186 by Benjamin Peterson · 14 years ago
  97. 8451c4b #1349106: add linesep argument to generator.flatten and header.encode. by R. David Murray · 14 years ago
  98. 1e908af #6518: enable context manager protocol for ossaudiodev types. by Georg Brandl · 14 years ago
  99. 75d8c5c Issue #6011: sysconfig and distutils.sysconfig use the surrogateescape error by Victor Stinner · 14 years ago
  100. ff150f2 Revert r85797 (and r85798): it broke the Windows buildbots because of by Antoine Pitrou · 14 years ago