1. d5890c8 add str.casefold() (closes #13752) by Benjamin Peterson · 13 years ago
  2. 94d5a71 Issue #13786: Remove unimplemented 'trace' long option from regrtest.py. by Meador Inge · 13 years ago
  3. b0ae0ac Issue #13786: Remove unimplemented 'trace' long option from regrtest.py. by Meador Inge · 13 years ago
  4. 124598c Issue #13725: regrtest does not recognize -d flag. by Meador Inge · 13 years ago
  5. 3f55e59 Issue #13725: regrtest does not recognize -d flag. by Meador Inge · 13 years ago
  6. 527c622 make YieldFrom its own distinct from Yield (closes #13780) by Benjamin Peterson · 13 years ago
  7. 91f252b merge from 3.2 - Fix issue13726: -S accepts an argument just as --start. by Senthil Kumaran · 13 years ago
  8. 3ffd7ca Fix issue13726: -S accepts an argument just as --start. by Senthil Kumaran · 13 years ago
  9. 87c0beb merge heads. by Senthil Kumaran · 13 years ago
  10. 4479577 merge from 3.2 - Fix Issue #13642: Unquote before b64encoding user:password during Basic Authentication. by Senthil Kumaran · 13 years ago
  11. c5c5a14 Fix Issue #13642: Unquote before b64encoding user:password during Basic Authentication. by Senthil Kumaran · 13 years ago
  12. 512d54f Merge. by Charles-François Natali · 13 years ago
  13. d612de1 Issue #12760: Refer to the new 'x' open mode as "exclusive creation" mode. by Charles-François Natali · 13 years ago
  14. 6c3dd7e merge from 3.2 by Senthil Kumaran · 13 years ago
  15. 0e0772d merge from 3.2 by Senthil Kumaran · 13 years ago
  16. 9bbcb25 Adding the -o option for Issue13726 by Senthil Kumaran · 13 years ago
  17. bcfe56d Issue13726 - Fix the ambiguous -S flag in regrtest. It is -o/--slow for printing the 10 slowest test. by Senthil Kumaran · 13 years ago
  18. e557da8 Fix a crash when the return value of a subgenerator is a temporary by Amaury Forgeot d'Arc · 13 years ago
  19. bbf5361 test_strlit was never run by Antoine Pitrou · 13 years ago
  20. f7bfff0 Remove unused certificate from the test directory. by Antoine Pitrou · 13 years ago
  21. ee91e09 #11906 Make test_argparse work interactively by removing extra space by Terry Jan Reedy · 13 years ago
  22. 66e2fb6 Issue #12364: Fix a hang in concurrent.futures.ProcessPoolExecutor. by Ross Lagerwall · 13 years ago
  23. ded0348 Issue #13502: threading: Fix a race condition in Event.wait() that made it by Charles-François Natali · 13 years ago
  24. dee45e2 Issue #12926: Fix a bug in tarfile's link extraction. by Lars Gustäbel · 13 years ago
  25. cdf6cd9 Closes #13699. Skipped two tests if Python is optimised. by Vinay Sajip · 13 years ago
  26. 6497aa3 Issue13696 - Fix 302 Redirection for Relative urls. by Senthil Kumaran · 13 years ago
  27. a8d7037 merge 3.1 by Benjamin Peterson · 13 years ago
  28. b462da8 fix this to not depend on dictionary order by Benjamin Peterson · 13 years ago
  29. 8f85f90 Issue #13636: Weak ciphers are now disabled by default in the ssl module by Antoine Pitrou · 13 years ago
  30. 366999a Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by by Charles-François Natali · 13 years ago
  31. 70efbef Issue #13594: various fixes to aifc module; patch by Oleg Plakhotnyuk by Sandro Tosi · 13 years ago
  32. bdd5354 Issue #13680: add lowecase compression type to write header; patch by Oleg Plakhotnyuk by Sandro Tosi · 13 years ago
  33. 7c9907e Fix no-op tests in importlib. by Antoine Pitrou · 13 years ago
  34. 0e61350 propgate error in other conditions by Benjamin Peterson · 13 years ago
  35. fe8039b Issue #13565: Increase multiprocessing's server socket backlog, to avoid by Charles-François Natali · 13 years ago
  36. 3075549 Minor code style improvements in http.server suggested in Issue13294. by Senthil Kumaran · 13 years ago
  37. 3ba95f8 Metaclasses with metaclasses with a __dict__ descriptor can no longer trigger code execution with inspect.getattr_static. by Michael Foord · 13 years ago
  38. 65a3f4b Use context managers in test_ssl to simplify test writing. by Antoine Pitrou · 13 years ago
  39. 28f8bee Issue #13645: fix test_import failure when run immediately after test_coding. by Antoine Pitrou · 13 years ago
  40. 86a8a9a Issue #1785: Fix inspect and pydoc with misbehaving descriptors. by Antoine Pitrou · 13 years ago
  41. bf38315 Followup to issue #11867: Use socketpair(), since FreeBSD < 8 doesn't really by Charles-François Natali · 13 years ago
  42. 7ded21e Issue #5424: add tests for inet_ntoa, inet_ntop, inet_aton and inet_pton. by Antoine Pitrou · 13 years ago
  43. 4ce2f36 Issue #13453: Try to increase some socket timeouts to make some buildbots stop by Charles-François Natali · 13 years ago
  44. d208416 Issue #13628: python-gdb.py is now able to retrieve more frames in the Python by Victor Stinner · 13 years ago
  45. 78ed83d Issue #11867: Make test_mailbox.test_lock_conflict deterministic (and fix a by Charles-François Natali · 13 years ago
  46. 62f3d03 #13576: add tests about the handling of (possibly broken) condcoms. by Ezio Melotti · 13 years ago
  47. a51623b Fix inspect.getattr_static to work on modules (again). Closes issue 11813. by Michael Foord · 13 years ago
  48. 165b128 Followup to #7502: add __hash__ method and tests. by Antoine Pitrou · 13 years ago
  49. a742526 Merge by Antoine Pitrou · 13 years ago
  50. 2bc801c Issue #7502: Fix equality comparison for DocTestCase instances. by Antoine Pitrou · 13 years ago
  51. 6d5f9e7 Issue #11870: threading: Properly reinitialize threads internal locks and by Charles-François Natali · 13 years ago
  52. cf53ae2 Issue #8035: urllib: Fix a bug where the client could remain stuck after a by Charles-François Natali · 13 years ago
  53. 0296a56 NULL and no exception set from tp_iternext means StopIteration by Benjamin Peterson · 13 years ago
  54. 9a80fa8 add test, which was missing from d64ac9ab4cd0 by Benjamin Peterson · 13 years ago
  55. bc3b682 Closes #13761: add a "flush" keyword argument to print(). by Georg Brandl · 13 years ago
  56. 5136ac0 Issue #13645: pyc files now contain the size of the corresponding source by Antoine Pitrou · 13 years ago
  57. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  58. 3a5d4cb Issue #13748: Raw bytes literals can now be written with the `rb` prefix as well as `br`. by Antoine Pitrou · 13 years ago
  59. b63a450 test_strlit was never run by Antoine Pitrou · 13 years ago
  60. b2bf01d use full unicode mappings for upper/lower/title case (#12736) by Benjamin Peterson · 13 years ago
  61. 9007f72 Remove unused certificate from the test directory. by Antoine Pitrou · 13 years ago
  62. 76961fa Issue #13757: Change os.fdlistdir() so that it duplicates the passed file by Charles-François Natali · 13 years ago
  63. 8d17234 Merge with 3.2 by Terry Jan Reedy · 13 years ago
  64. dc3044c Issue #12760: Add a create mode to open(). Patch by David Townshend. by Charles-François Natali · 13 years ago
  65. 7b7caa8 Fix nasty typo by Raymond Hettinger · 13 years ago
  66. 8bc8585 provide a common method to check for RETR_DATA validity, first checking the expected len and then the actual data content; this way we get a failure on len mismatch rather than content mismatch (which is very long and unreadable) by Giampaolo Rodola' · 13 years ago
  67. 0c5e52f Make the docstring style consistent. by Raymond Hettinger · 13 years ago
  68. 61bd729 Improve clarity with keyword argument for block. Move nowait methods together. by Raymond Hettinger · 13 years ago
  69. 143f51a Minor code clean-ups and beautifications. by Raymond Hettinger · 13 years ago
  70. 7546ad3 Issue #13739: In os.listdir(), rewind the directory stream (so that listdir() by Charles-François Natali · 13 years ago
  71. 69f39a5 Merge with 3.2 for #12364. by Ross Lagerwall · 13 years ago
  72. 7540427 Simplify the code using with-statements. by Raymond Hettinger · 13 years ago
  73. 2c94cdd Closes #13732: now use os.linesep instead of a literal newline. by Vinay Sajip · 13 years ago
  74. 61d28d6 Issue #13502: threading: Fix a race condition in Event.wait() that made it by Charles-François Natali · 13 years ago
  75. 0a08d7a Issue #9993: When the source and destination are on different filesystems, by Antoine Pitrou · 13 years ago
  76. 8f771a4 Merge from 3.2: Issue #12926: Fix a bug in tarfile's link extraction. by Lars Gustäbel · 13 years ago
  77. f7e7818 Issue #13713: fix a regression in HTTP chunked reading after 806cfe39f729 by Antoine Pitrou · 13 years ago
  78. d710d14 convince regrtest.py we aren't modifying _CONFIG_VARS by Benjamin Peterson · 13 years ago
  79. 2549f87 Closes #13699. Skipped two tests if Python is optimised. by Vinay Sajip · 13 years ago
  80. 23b94d0 Refactored logging rotating handlers for improved flexibility. by Vinay Sajip · 13 years ago
  81. 239a042 merge from 3.2 by Senthil Kumaran · 13 years ago
  82. c095956 merge 3.2 by Benjamin Peterson · 13 years ago
  83. 72aeec3 Issue #13636: Weak ciphers are now disabled by default in the ssl module by Antoine Pitrou · 13 years ago
  84. 74c503b use io.SEEK_* constants instead of os.SEEK_* where an IO stream is seeked, leaving the os.SEEK_* constants only for os.lseek, as documented by Eli Bendersky · 13 years ago
  85. c041ab6 Mock the rename failure a bit better by Antoine Pitrou · 13 years ago
  86. 4266333 Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by by Charles-François Natali · 13 years ago
  87. 9912b39 merge with 3.2 by Sandro Tosi · 13 years ago
  88. a56ee04 Issue #13640: add application/vnd.apple.mpegurl MIME type; (partial) patch by Hiroaki Kawai by Sandro Tosi · 13 years ago
  89. 35e0275 merge with 3.2 by Sandro Tosi · 13 years ago
  90. 5e8767c Fix no-op tests in importlib. by Antoine Pitrou · 13 years ago
  91. 78091e6 Issue #12715: Add an optional symlinks argument to shutil functions (copyfile, copymode, copystat, copy, copy2). by Antoine Pitrou · 13 years ago
  92. bbb0803 Limit test scope to those platforms that can save the target filenames. Reference #11638. by Jason R. Coombs · 13 years ago
  93. 70069fc don't fail if CLOEXEC doesn't exist by Benjamin Peterson · 13 years ago
  94. a5f6f2a merge 3.2 by Benjamin Peterson · 13 years ago
  95. 2fb9ae9 add a flags parameter to select.epoll by Benjamin Peterson · 13 years ago
  96. e7437a7 Ported some test cases from 2.7 for #11638 by Jason R. Coombs · 13 years ago
  97. 78c1b42 Issue #13565: Increase multiprocessing's server socket backlog, to avoid by Charles-François Natali · 13 years ago
  98. 5b62942 Issue #13577: Built-in methods and functions now have a __qualname__. by Antoine Pitrou · 13 years ago
  99. d22983d merge from 3.2. Minor code style improvements in http.server suggested in Issue13294. by Senthil Kumaran · 13 years ago
  100. 5285518 Forgot the data file for Diffie-Hellman tests. by Antoine Pitrou · 13 years ago