1. df300d5 Improve the test for dirfd(), some systems #define it rather than have by Gregory P. Smith · 14 years ago
  2. e9b7cab Another issue #8052 bugfix (related to previous commit). by Gregory P. Smith · 14 years ago
  3. e3f7848 Bugfix for issue #8052 fix on *BSD variants. by Gregory P. Smith · 14 years ago
  4. 9564e4c Add a Misc/NEWS entry for issue 8052. by Gregory P. Smith · 14 years ago
  5. 8facece Fixes issue #8052: The posix subprocess module's close_fds behavior was by Gregory P. Smith · 14 years ago
  6. 12fdca5 Avoid the compiler warning about the unused return value. by Gregory P. Smith · 14 years ago
  7. f49d152 Issue #12922: fix the TextIOBase documentation to include a description of seek() and tell() methods. by Antoine Pitrou · 14 years ago
  8. 41b2404 fix typo; thanks to Justin Watt from docs@ by Sandro Tosi · 14 years ago
  9. 3800ea9 Fix Issue6631 - Disallow relative file paths in urllib urlopen by Senthil Kumaran · 14 years ago
  10. 0028908 #13760: picklability tests for configparser exceptions by Łukasz Langa · 14 years ago
  11. 315a62b Closes #13807: Merged fix from 3.1. by Vinay Sajip · 14 years ago
  12. 889bb29 Closes #13807: Now checks for sys.stderr being there before writing to it. by Vinay Sajip · 14 years ago
  13. a3443d9 Issue #12949: Document the kwonlyargcount argument for the PyCode_New C API function. by Meador Inge · 14 years ago
  14. da8e11a Issue #13605: more meaningful example + fixes by Sandro Tosi · 14 years ago
  15. 16bd0b4 Issue #13605: add documentation for nargs=argparse.REMAINDER by Sandro Tosi · 14 years ago
  16. f0229aa Issue #11948: clarify modules search path by Sandro Tosi · 14 years ago
  17. 972cfb9 Issue #2134: Clarify token.OP handling rationale in tokenize documentation. by Meador Inge · 14 years ago
  18. 1b468af Issue #13722: Avoid silencing ImportErrors when initializing the codecs registry. by Antoine Pitrou · 14 years ago
  19. 55f217f Fix refleaks in test_capi (this was easier than I thought!) by Antoine Pitrou · 14 years ago
  20. 6c40eb7 Fix the builtin module initialization code to store the init function for future reinitialization. by Antoine Pitrou · 14 years ago
  21. 0c60381 Add part of test_inspect test from 2.7 by Antoine Pitrou · 14 years ago
  22. fc1b6f0 Fix the _io module leaking references when a sub-interpreter is created. by Antoine Pitrou · 14 years ago
  23. 1c7ade5 Fix leaking a RuntimeError objects when creating sub-interpreters by Antoine Pitrou · 14 years ago
  24. 2fabfac Fix a memory leak when initializing the standard I/O streams. by Antoine Pitrou · 14 years ago
  25. 892b0b9 Issue #13781: Fix GzipFile to work with os.fdopen()'d file objects. by Nadeem Vawda · 14 years ago
  26. 031605a And yet another emergency fix for #13803 bootstrap issue: Under Solaris, distutils doesn't include bitness in the directory name by Jesus Cea · 14 years ago
  27. 1aa1cf3 Yet another emergency fix for #13803 bootstrap issue: Under Solaris, distutils doesn't include bitness in the directory name by Jesus Cea · 14 years ago
  28. acd5f7b #13665: s/string/bytes/ in error message. by Ezio Melotti · 14 years ago
  29. 6e35d41 Emergency fix for #13803 bootstrap issue: Under Solaris, distutils doesn't include bitness in the directory name by Jesus Cea · 14 years ago
  30. 8874fd6 Closes #13803: Under Solaris, distutils doesn't include bitness in the directory name by Jesus Cea · 14 years ago
  31. 2f828f2 Test running of code in a sub-interpreter (prelude to issue #6531). by Antoine Pitrou · 14 years ago
  32. 03757ec Issue #13589: Fix some serialization primitives in the aifc module. by Antoine Pitrou · 14 years ago
  33. c77bb65 Remove "documenting" latex document. by Georg Brandl · 14 years ago
  34. 32ee44f Issue: #12409: remove obsolete susp-entries by Sandro Tosi · 14 years ago
  35. 6914048 regenerate configure using autoconf. includes the dirfd test. by Gregory P. Smith · 14 years ago
  36. 4188441 Test for the dirfd library function (for use in some upcoming changes). by Gregory P. Smith · 14 years ago
  37. dc224f8 #6528 None, True, False are keywords in 3.x. Patch by Roger Serwy. by Terry Jan Reedy · 14 years ago
  38. 01b34af #13715: fix typo in unicodedata doc. Patch by Eli Collins. by Ezio Melotti · 14 years ago
  39. 9ecb6be #13695: fix a couple of typos in the doc. by Ezio Melotti · 14 years ago
  40. a846d0a explain why we need this grammar file (closes #13766) by Benjamin Peterson · 14 years ago
  41. 3388060 Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenNames indexes. by Meador Inge · 14 years ago
  42. 7f53aea #13039 allow proper deletion of '>>> ' in IDLE editor windows. by Terry Jan Reedy · 14 years ago
  43. 63e6c32 Consolidate the occurrances of the prime used as the multiplier when hashing by Gregory P. Smith · 14 years ago
  44. 515687a remove 'Documenting Python' and its references, it's now on devguide by Sandro Tosi · 14 years ago
  45. c1f079f Mention the additional way to use the lvl parameter and when it changed. by Gregory P. Smith · 14 years ago
  46. b0ae0ac Issue #13786: Remove unimplemented 'trace' long option from regrtest.py. by Meador Inge · 14 years ago
  47. f37c198 Issue #13725: Add a NEWS entry. by Meador Inge · 14 years ago
  48. 3f55e59 Issue #13725: regrtest does not recognize -d flag. by Meador Inge · 14 years ago
  49. 3ffd7ca Fix issue13726: -S accepts an argument just as --start. by Senthil Kumaran · 14 years ago
  50. c5c5a14 Fix Issue #13642: Unquote before b64encoding user:password during Basic Authentication. by Senthil Kumaran · 14 years ago
  51. 9bbcb25 Adding the -o option for Issue13726 by Senthil Kumaran · 14 years ago
  52. bcfe56d Issue13726 - Fix the ambiguous -S flag in regrtest. It is -o/--slow for printing the 10 slowest test. by Senthil Kumaran · 14 years ago
  53. a931463 #13730 grammar fix by Terry Jan Reedy · 14 years ago
  54. fffbfbd Issue #13764: remove outdated script Misc/build.sh by Antoine Pitrou · 14 years ago
  55. bbf5361 test_strlit was never run by Antoine Pitrou · 14 years ago
  56. a3d1e2e #11633 At least 2 people prefer earlier revision. by Terry Jan Reedy · 14 years ago
  57. 889a510 Issue #13724: improve documentation for socket.create_connection. by Antoine Pitrou · 14 years ago
  58. 0010256 fold into one if statement by Benjamin Peterson · 14 years ago
  59. ea868d3 Minor correction. #11418 by Terry Jan Reedy · 14 years ago
  60. e247928 Closes #11633 Clarify print buffering. by Terry Jan Reedy · 14 years ago
  61. f4ec3c5 #13754 String returned if less than *or equal to* x 3 by Terry Jan Reedy · 14 years ago
  62. f7bfff0 Remove unused certificate from the test directory. by Antoine Pitrou · 14 years ago
  63. 19d85c2 Issue9637 - Explain in getproxies_environment that <scheme>_proxy environ variable case does not matter. by Senthil Kumaran · 14 years ago
  64. ee91e09 #11906 Make test_argparse work interactively by removing extra space by Terry Jan Reedy · 14 years ago
  65. ac8bfca Issue #13747: fix SSL compatibility table. by Antoine Pitrou · 14 years ago
  66. 84a2edc Issue #13747: fix documentation error about the default SSL version. by Antoine Pitrou · 14 years ago
  67. 66e2fb6 Issue #12364: Fix a hang in concurrent.futures.ProcessPoolExecutor. by Ross Lagerwall · 14 years ago
  68. 645a0dd Py_SetPythonHome() can be called before Py_Initialize(); thanks to Cody Smith from docs@ by Sandro Tosi · 14 years ago
  69. ded0348 Issue #13502: threading: Fix a race condition in Event.wait() that made it by Charles-François Natali · 14 years ago
  70. b52e7a9 clarify recv* are blocking operations; thanks to Chris Kogelnik from docs@ by Sandro Tosi · 14 years ago
  71. 441ae04 Update printout of SSL certificate examples for 3.2+. by Antoine Pitrou · 14 years ago
  72. f576747 Issue #12042: a queue is only used to retrive results; preliminary patch by Jordan Stadler by Sandro Tosi · 14 years ago
  73. ba232df Issue #11984: remove reference to parser, it's not showing symbol usage anymore by Sandro Tosi · 14 years ago
  74. dee45e2 Issue #12926: Fix a bug in tarfile's link extraction. by Lars Gustäbel · 14 years ago
  75. cdf6cd9 Closes #13699. Skipped two tests if Python is optimised. by Vinay Sajip · 14 years ago
  76. 98492a5 Issue #10772: add count and help argparse action; patch by Marc Sibson by Sandro Tosi · 14 years ago
  77. 6497aa3 Issue13696 - Fix 302 Redirection for Relative urls. by Senthil Kumaran · 14 years ago
  78. b7ffed8 Add a subsection explaning cipher selection. by Antoine Pitrou · 14 years ago
  79. a12d5c6 fix formatting by Benjamin Peterson · 14 years ago
  80. d204934 exception support is correct now (closes #13705) by Benjamin Peterson · 14 years ago
  81. a8d7037 merge 3.1 by Benjamin Peterson · 14 years ago
  82. b462da8 fix this to not depend on dictionary order by Benjamin Peterson · 14 years ago
  83. 4f616af Merge by Antoine Pitrou · 14 years ago
  84. 8f85f90 Issue #13636: Weak ciphers are now disabled by default in the ssl module by Antoine Pitrou · 14 years ago
  85. 753b79c Issue #6031: improve serve_forever() description by Sandro Tosi · 14 years ago
  86. ea320ab Issue #9349: add argparse.SUPPRESS to help doc by Sandro Tosi · 14 years ago
  87. 366999a Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by by Charles-François Natali · 14 years ago
  88. 70efbef Issue #13594: various fixes to aifc module; patch by Oleg Plakhotnyuk by Sandro Tosi · 14 years ago
  89. bdd5354 Issue #13680: add lowecase compression type to write header; patch by Oleg Plakhotnyuk by Sandro Tosi · 14 years ago
  90. da785fd Issue #13690: add re.DEBUG; patch by Filip Gruszczyński by Sandro Tosi · 14 years ago
  91. b2794c8 Issue #13683: raise with no exception in scope throws a RuntimeError; fix by Ramchandra Apte by Sandro Tosi · 14 years ago
  92. 4391173 Update copyright dates in Mac plists. by Ned Deily · 14 years ago
  93. c40d362a merge heads by Benjamin Peterson · 14 years ago
  94. f606e68 add another year to glorious PSF IP by Benjamin Peterson · 14 years ago
  95. 1abde36 fix some broken URLs by Sandro Tosi · 14 years ago
  96. d08effe Some formatting & grammar fixes for the multiprocessing doc by Eli Bendersky · 14 years ago
  97. a6c4a10 indicate msg is an argument by Benjamin Peterson · 14 years ago
  98. 7c9907e Fix no-op tests in importlib. by Antoine Pitrou · 14 years ago
  99. 79ed84c use booleans by Benjamin Peterson · 14 years ago
  100. 0e61350 propgate error in other conditions by Benjamin Peterson · 14 years ago