1. 0166a28 modernize some modules' code by replacing OSError->ENOENT/ENOTDIR/EPERM/EEXIST occurrences with the corresponding pep-3151 exceptions (FileNotFoundError, NotADirectoryError, etc.) by Giampaolo Rodola' · 12 years ago
  2. b071d4f profile/cProfile: add tests for run() and runctx() functions by Giampaolo Rodola' · 12 years ago
  3. 2f50aaf modernize some modules' code by using with statement around open() by Giampaolo Rodola' · 12 years ago
  4. fd6e6cf Raise KeyError instead of OverflowError when getpwuid's argument is out of by Serhiy Storchaka · 12 years ago
  5. 55e2238 Raise KeyError instead of OverflowError when getpwuid's argument is out of by Serhiy Storchaka · 12 years ago
  6. 64634eb Merge: #17171: fix email.encoders.encode_7or8bit when applied to binary data. by R David Murray · 12 years ago
  7. 66383b2 Merge: #17171: fix email.encoders.encode_7or8bit when applied to binary data. by R David Murray · 12 years ago
  8. ec317a8 #17171: fix email.encoders.encode_7or8bit when applied to binary data. by R David Murray · 12 years ago
  9. a6e902a Merge: #17064: fix sporadic permission errors in test_mailbox on windows. by R David Murray · 12 years ago
  10. 0b61d3c Merge: #17064: fix sporadic permission errors in test_mailbox on windows. by R David Murray · 12 years ago
  11. b3e8384 #17064: fix sporadic permission errors in test_mailbox on windows. by R David Murray · 12 years ago
  12. 890d72d Merge. Closes issue 17052. by Michael Foord · 12 years ago
  13. b71b8ec Merge by Michael Foord · 12 years ago
  14. f78f5b1 Correction to issue 17052 fix by Michael Foord · 12 years ago
  15. 3420057 Closes #17158: Add 'symbols' to help() welcome message; clarify 'modules spam' by Terry Jan Reedy · 12 years ago
  16. 4e08f78 Merge. Closes issue 17052. by Michael Foord · 12 years ago
  17. a23a39c Merge by Michael Foord · 12 years ago
  18. 8fd396b Issue 17502: unittest discovery should use self.testLoader by Michael Foord · 12 years ago
  19. c2d0200 Issue #4591: Uid and gid values larger than 2**31 are supported now. by Serhiy Storchaka · 12 years ago
  20. 7cf5599 Issue #4591: Uid and gid values larger than 2**31 are supported now. by Serhiy Storchaka · 12 years ago
  21. 2306e60 Issue #17165: fix a bare import in _strptime.py. Patch by Berker Peksag. by Antoine Pitrou · 12 years ago
  22. 06e5e73 Issue #17141: random.vonmisesvariate() no more hangs for large kappas. by Serhiy Storchaka · 12 years ago
  23. ac99576 Issue #17141: random.vonmisesvariate() no more hangs for large kappas. by Serhiy Storchaka · 12 years ago
  24. 6c22b1d Issue #17141: random.vonmisesvariate() no more hangs for large kappas. by Serhiy Storchaka · 12 years ago
  25. b8cbba5 Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError by Serhiy Storchaka · 12 years ago
  26. 801d955 Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError by Serhiy Storchaka · 12 years ago
  27. 5e61f14 Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError by Serhiy Storchaka · 12 years ago
  28. 419d9a8 evaluate lambda keyword-only defaults after positional defaults (#16967 again) by Benjamin Peterson · 12 years ago
  29. 8b466c9 merge heads by Benjamin Peterson · 12 years ago
  30. 1ef876c evaluate positional defaults before keyword-only defaults (closes #16967) by Benjamin Peterson · 12 years ago
  31. 1b901ba Issue #17149: merge fix from 3.3. by Mark Dickinson · 12 years ago
  32. 6427358 Issue #17149: merge fix from 3.2. by Mark Dickinson · 12 years ago
  33. be5f919 Issue #17149: Fix random.vonmisesvariate to always return results in [0, 2*math.pi]. by Mark Dickinson · 12 years ago
  34. 34a2a87 Fix a test for SpooledTemporaryFile (added in issue #10355). by Serhiy Storchaka · 12 years ago
  35. bf95c14 Fix a test for SpooledTemporaryFile (added in issue #10355). by Serhiy Storchaka · 12 years ago
  36. 497cee4 Fix a test for SpooledTemporaryFile (added in issue #10355). by Serhiy Storchaka · 12 years ago
  37. 02c2076 Issue #1470548: XMLGenerator now works with binary output streams. by Serhiy Storchaka · 12 years ago
  38. 9fef188 Issue #1470548: XMLGenerator now works with binary output streams. by Serhiy Storchaka · 12 years ago
  39. 88efc52 Issue #1470548: XMLGenerator now works with binary output streams. by Serhiy Storchaka · 12 years ago
  40. f261923 Issue #6975: os.path.realpath() now correctly resolves multiple nested symlinks on POSIX platforms. by Serhiy Storchaka · 12 years ago
  41. d83c824 Issue #6975: os.path.realpath() now correctly resolves multiple nested symlinks on POSIX platforms. by Serhiy Storchaka · 12 years ago
  42. df32691 Issue #6975: os.path.realpath() now correctly resolves multiple nested symlinks on POSIX platforms. by Serhiy Storchaka · 12 years ago
  43. 902fc8b Issue #13773: sqlite3.connect() gets a new `uri` parameter to pass the filename as a URI, allowing to pass custom options. by Antoine Pitrou · 12 years ago
  44. 26cab56 Issue #17169: Restore errno in tempfile exceptions. by Serhiy Storchaka · 12 years ago
  45. 7451a72 Issue #17169: Restore errno in tempfile exceptions. by Serhiy Storchaka · 12 years ago
  46. c9b4e60 Merge: #16564: Fix regression in use of encoders.encode_noop with binary data. by R David Murray · 12 years ago
  47. 6cb1d67 Merge: #16564: Fix regression in use of encoders.encode_noop with binary data. by R David Murray · 12 years ago
  48. ceaa8b1 #16564: Fix regression in use of encoders.encode_noop with binary data. by R David Murray · 12 years ago
  49. 5d70ccc Issue #10355: SpooledTemporaryFile properties now work for unrolled files. by Serhiy Storchaka · 12 years ago
  50. 3318280 Issue #10355: SpooledTemporaryFile properties now work for unrolled files. by Serhiy Storchaka · 12 years ago
  51. bbbbe8e Issue #10355: SpooledTemporaryFile properties now work for unrolled files. by Serhiy Storchaka · 12 years ago
  52. 9ea2d55 Issue #17147. Mention BytesIO in SpooledTemporaryFile documentation. by Serhiy Storchaka · 12 years ago
  53. 23a6726 Issue #17147. Mention BytesIO in SpooledTemporaryFile documentation. by Serhiy Storchaka · 12 years ago
  54. 4f169a7 Issue #17147. Mention BytesIO in SpooledTemporaryFile documentation. by Serhiy Storchaka · 12 years ago
  55. 7611d9a Issue #16686: Fixed a lot of bugs in audioop module. by Serhiy Storchaka · 12 years ago
  56. 8135de8 Issue #16686: Fixed a lot of bugs in audioop module. by Serhiy Storchaka · 12 years ago
  57. 01ad622 Issue #16686: Fixed a lot of bugs in audioop module. by Serhiy Storchaka · 12 years ago
  58. d1938cd Fix accidental non-breakable spaces (U+00A0). by Serhiy Storchaka · 12 years ago
  59. 70ea7fa Fix accidental non-breakable spaces (U+00A0). by Serhiy Storchaka · 12 years ago
  60. 1273dfc Fix accidental non-breakable spaces (U+00A0). by Serhiy Storchaka · 12 years ago
  61. cfd2c1b (Merge 3.3) Issue #17137: When an Unicode string is resized, the internal wide by Victor Stinner · 12 years ago
  62. bbbac2e Issue #17137: When an Unicode string is resized, the internal wide character by Victor Stinner · 12 years ago
  63. eae3b33 Issue #17073: Fix some integer overflows in sqlite3 module. by Serhiy Storchaka · 12 years ago
  64. 2efdc90 Issue #17073: Fix some integer overflows in sqlite3 module. by Serhiy Storchaka · 12 years ago
  65. 3cf96ac Issue #17073: Fix some integer overflows in sqlite3 module. by Serhiy Storchaka · 12 years ago
  66. fe197b7 Issue #17118: Add new tests for testing Python-Tcl interaction. by Serhiy Storchaka · 12 years ago
  67. cf0904f Issue #17118: Add new tests for testing Python-Tcl interaction. by Serhiy Storchaka · 12 years ago
  68. df4bb46 Issue #17118: Add new tests for testing Python-Tcl interaction. by Serhiy Storchaka · 12 years ago
  69. d971793 Issue #17114: IDLE now uses non-strict config parser. by Serhiy Storchaka · 12 years ago
  70. 705ef7a Issue #17114: IDLE now uses non-strict config parser. by Serhiy Storchaka · 12 years ago
  71. 8995300 Issue #17114: IDLE now uses non-strict config parser. by Serhiy Storchaka · 12 years ago
  72. 73cfd79 Fix test_from_dll* in test_returnfuncptrs.py. by Serhiy Storchaka · 12 years ago
  73. f5d245a Fix test_from_dll* in test_returnfuncptrs.py. by Serhiy Storchaka · 12 years ago
  74. c2255ac Fix test_from_dll* in test_returnfuncptrs.py. by Serhiy Storchaka · 12 years ago
  75. 09f336c Merge: #17142: fix apparent copy and paste error in test_all. by R David Murray · 12 years ago
  76. cd74322 Merge: #17142: fix apparent copy and paste error in test_all. by R David Murray · 12 years ago
  77. 1acaf0b #17142: fix apparent copy and paste error in test_all. by R David Murray · 12 years ago
  78. daf990f Issue #16723: httplib.HTTPResponse no longer marked closed when the connection by Serhiy Storchaka · 12 years ago
  79. b6c86fd Issue #16723: httplib.HTTPResponse no longer marked closed when the connection by Serhiy Storchaka · 12 years ago
  80. b5b9c8c Issue #16723: httplib.HTTPResponse no longer marked closed when the connection by Serhiy Storchaka · 12 years ago
  81. da23259 Issue #17107: Test client-side SNI support in urllib.request thanks to the new server-side SNI support in the ssl module. by Antoine Pitrou · 12 years ago
  82. ca4220b Issue #17122: Fix and cleanup test_functools.py. by Serhiy Storchaka · 12 years ago
  83. 773e42d Issue #15359: Add CAN_BCM protocol support to the socket module. Patch by Brian by Charles-François Natali · 12 years ago
  84. c44911f Merge: #16948: Fix quopri encoding of non-latin1 character sets. by R David Murray · 12 years ago
  85. e201e9d Merge: #16948: Fix quopri encoding of non-latin1 character sets. by R David Murray · 12 years ago
  86. f581b37 #16948: Fix quopri encoding of non-latin1 character sets. by R David Murray · 12 years ago
  87. 2fdedff remain symbol.main to symbol._main mirroring token.py by Benjamin Peterson · 12 years ago
  88. 0c2e193 merge 3.3 (#17132) by Benjamin Peterson · 12 years ago
  89. 16d86aa update symbol.py for yield from grammar changes (closes #17132) by Benjamin Peterson · 12 years ago
  90. 003472a token.main is now token._main by Benjamin Peterson · 12 years ago
  91. 4cd7b9c #17076: Make copying of xattrs more permissive of missing FS support by Hynek Schlawack · 12 years ago
  92. 0beab05 #17076: Make copying of xattrs more permissive of missing FS support by Hynek Schlawack · 12 years ago
  93. 2c4f6e8 Merge #16811: Fix folding of headers with no value in provisional policies. by R David Murray · 12 years ago
  94. 844b0e6 #16811: Fix folding of headers with no value in provisional policies. by R David Murray · 12 years ago
  95. 88eea54 Issue #17089: Expat parser now correctly works with string input not only when by Serhiy Storchaka · 12 years ago
  96. 36b365c Issue #17089: Expat parser now correctly works with string input not only when by Serhiy Storchaka · 12 years ago
  97. 43536e9 Issue #17089: Expat parser now correctly works with string input not only when by Serhiy Storchaka · 12 years ago
  98. db1ba4e Fix test_tools hangs on Windows. Patch by Jeremy Kloth. by Serhiy Storchaka · 12 years ago
  99. b3f194d Issue #16903: Popen.communicate() on Unix now accepts strings when by Serhiy Storchaka · 12 years ago
  100. 06f63d0 Do not raise self.skipTest(). skipTest() already raises an exception. by Serhiy Storchaka · 12 years ago