1. ded0348 Issue #13502: threading: Fix a race condition in Event.wait() that made it by Charles-François Natali · 13 years ago
  2. b52e7a9 clarify recv* are blocking operations; thanks to Chris Kogelnik from docs@ by Sandro Tosi · 13 years ago
  3. 441ae04 Update printout of SSL certificate examples for 3.2+. by Antoine Pitrou · 13 years ago
  4. f576747 Issue #12042: a queue is only used to retrive results; preliminary patch by Jordan Stadler by Sandro Tosi · 13 years ago
  5. ba232df Issue #11984: remove reference to parser, it's not showing symbol usage anymore by Sandro Tosi · 13 years ago
  6. dee45e2 Issue #12926: Fix a bug in tarfile's link extraction. by Lars Gustäbel · 13 years ago
  7. cdf6cd9 Closes #13699. Skipped two tests if Python is optimised. by Vinay Sajip · 13 years ago
  8. 98492a5 Issue #10772: add count and help argparse action; patch by Marc Sibson by Sandro Tosi · 13 years ago
  9. 6497aa3 Issue13696 - Fix 302 Redirection for Relative urls. by Senthil Kumaran · 13 years ago
  10. b7ffed8 Add a subsection explaning cipher selection. by Antoine Pitrou · 13 years ago
  11. a12d5c6 fix formatting by Benjamin Peterson · 13 years ago
  12. d204934 exception support is correct now (closes #13705) by Benjamin Peterson · 13 years ago
  13. a8d7037 merge 3.1 by Benjamin Peterson · 13 years ago
  14. b462da8 fix this to not depend on dictionary order by Benjamin Peterson · 13 years ago
  15. 4f616af Merge by Antoine Pitrou · 13 years ago
  16. 8f85f90 Issue #13636: Weak ciphers are now disabled by default in the ssl module by Antoine Pitrou · 13 years ago
  17. 753b79c Issue #6031: improve serve_forever() description by Sandro Tosi · 13 years ago
  18. ea320ab Issue #9349: add argparse.SUPPRESS to help doc by Sandro Tosi · 13 years ago
  19. 366999a Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by by Charles-François Natali · 13 years ago
  20. 70efbef Issue #13594: various fixes to aifc module; patch by Oleg Plakhotnyuk by Sandro Tosi · 13 years ago
  21. bdd5354 Issue #13680: add lowecase compression type to write header; patch by Oleg Plakhotnyuk by Sandro Tosi · 13 years ago
  22. da785fd Issue #13690: add re.DEBUG; patch by Filip Gruszczyński by Sandro Tosi · 13 years ago
  23. b2794c8 Issue #13683: raise with no exception in scope throws a RuntimeError; fix by Ramchandra Apte by Sandro Tosi · 13 years ago
  24. 4391173 Update copyright dates in Mac plists. by Ned Deily · 13 years ago
  25. c40d362a merge heads by Benjamin Peterson · 13 years ago
  26. f606e68 add another year to glorious PSF IP by Benjamin Peterson · 13 years ago
  27. 1abde36 fix some broken URLs by Sandro Tosi · 13 years ago
  28. d08effe Some formatting & grammar fixes for the multiprocessing doc by Eli Bendersky · 13 years ago
  29. a6c4a10 indicate msg is an argument by Benjamin Peterson · 13 years ago
  30. 7c9907e Fix no-op tests in importlib. by Antoine Pitrou · 13 years ago
  31. 79ed84c use booleans by Benjamin Peterson · 13 years ago
  32. 0e61350 propgate error in other conditions by Benjamin Peterson · 13 years ago
  33. 1532c8f I do not think we will ever have auto-indent at the prompt, that is for IPython and the like. by Georg Brandl · 13 years ago
  34. 7386662 use list() to wrap range() in itertools.permutations() example; thanks to Romain MORLEVAT from docs@ by Sandro Tosi · 13 years ago
  35. 3e6c814 fix "Title underline too short" sphinx warning by Sandro Tosi · 13 years ago
  36. 2b373b0 use double-quote char instead of unicode ones; thanks to tomo cocoa from docs@ by Sandro Tosi · 13 years ago
  37. 44f568c fix to sent/send typo by Sandro Tosi · 13 years ago
  38. 1526ad1 fix Constuctor/Constructor typo; thanks to Anthon van der Neut from docs@ by Sandro Tosi · 13 years ago
  39. 3721fbc point IronPython to ironpython.net; thanks to Lazar Pancic from docs@ by Sandro Tosi · 13 years ago
  40. 75c71cc fix Rather that/Rather than; thanks to Reuben Thomas from docs@ by Sandro Tosi · 13 years ago
  41. baf30da remove spurious dot from string formatting example; thanks to Anthon van der Neut from docs@ by Sandro Tosi · 13 years ago
  42. 0b7e536 correct syslog.openlog() argument name to logoption; thanks to Arnaud Gomes-do-Vale from docs@ by Sandro Tosi · 13 years ago
  43. ac007ba Issue #13632: Update token documentation to reflect actual token types by Meador Inge · 13 years ago
  44. 57f97f4 parameter_list was meant here by Benjamin Peterson · 13 years ago
  45. ad17358 kill superfluous 'comprehension' case (closes #13658) by Benjamin Peterson · 13 years ago
  46. fe8039b Issue #13565: Increase multiprocessing's server socket backlog, to avoid by Charles-François Natali · 13 years ago
  47. 3075549 Minor code style improvements in http.server suggested in Issue13294. by Senthil Kumaran · 13 years ago
  48. 83194f5 News entry for Issue12798 by Senthil Kumaran · 13 years ago
  49. 016c6d5 Issue12798 - Update mimetypes documentation. Correct the doc section where by Senthil Kumaran · 13 years ago
  50. 667d75d Don't redefine _GNU_SOURCE if it's already defined. by Ross Lagerwall · 13 years ago
  51. 031bf95 Issue #11006: Don't issue low level warning in subprocess when pipe2() fails. by Ross Lagerwall · 13 years ago
  52. 3ba95f8 Metaclasses with metaclasses with a __dict__ descriptor can no longer trigger code execution with inspect.getattr_static. by Michael Foord · 13 years ago
  53. 65a3f4b Use context managers in test_ssl to simplify test writing. by Antoine Pitrou · 13 years ago
  54. 28f8bee Issue #13645: fix test_import failure when run immediately after test_coding. by Antoine Pitrou · 13 years ago
  55. 08c08eb Issue #13597: Fix the documentation of the "-u" command-line option, and wording of "What's new in Python 3.0" about standard streams. by Antoine Pitrou · 13 years ago
  56. 86a8a9a Issue #1785: Fix inspect and pydoc with misbehaving descriptors. by Antoine Pitrou · 13 years ago
  57. 53aa1d7 fix possible if unlikely leak by Benjamin Peterson · 13 years ago
  58. 0f1e3ac note the blinding speed of these functions by Benjamin Peterson · 13 years ago
  59. bf38315 Followup to issue #11867: Use socketpair(), since FreeBSD < 8 doesn't really by Charles-François Natali · 13 years ago
  60. 1c92cfe don't mention implementation detail by Benjamin Peterson · 13 years ago
  61. 7ded21e Issue #5424: add tests for inet_ntoa, inet_ntop, inet_aton and inet_pton. by Antoine Pitrou · 13 years ago
  62. 4ce2f36 Issue #13453: Try to increase some socket timeouts to make some buildbots stop by Charles-François Natali · 13 years ago
  63. d208416 Issue #13628: python-gdb.py is now able to retrieve more frames in the Python by Victor Stinner · 13 years ago
  64. 78ed83d Issue #11867: Make test_mailbox.test_lock_conflict deterministic (and fix a by Charles-François Natali · 13 years ago
  65. 62f3d03 #13576: add tests about the handling of (possibly broken) condcoms. by Ezio Melotti · 13 years ago
  66. 80a61e8 #13387: rephrase unclear sentence. by Ezio Melotti · 13 years ago
  67. a51623b Fix inspect.getattr_static to work on modules (again). Closes issue 11813. by Michael Foord · 13 years ago
  68. bd206e2 Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 13 years ago
  69. 165b128 Followup to #7502: add __hash__ method and tests. by Antoine Pitrou · 13 years ago
  70. 92ed387 Merge by Antoine Pitrou · 13 years ago
  71. ac0675c Small clarification in docstring of dict.update(): the positional argument is not required. by Georg Brandl · 13 years ago
  72. a742526 Merge by Antoine Pitrou · 13 years ago
  73. 2bc801c Issue #7502: Fix equality comparison for DocTestCase instances. by Antoine Pitrou · 13 years ago
  74. 6fbd525 Issue #13617: Document that the result of the conversion of a Unicode object to by Victor Stinner · 13 years ago
  75. 6d5f9e7 Issue #11870: threading: Properly reinitialize threads internal locks and by Charles-François Natali · 13 years ago
  76. cf53ae2 Issue #8035: urllib: Fix a bug where the client could remain stuck after a by Charles-François Natali · 13 years ago
  77. a94a0e9 Issue #13522: Fix _Py_co_pow() documentation by Victor Stinner · 13 years ago
  78. 07b1c87 Issue #13522: document error return values of some float and complex C API functions. by Antoine Pitrou · 13 years ago
  79. bb2e9c4 Issue #11231: Fix bytes and bytearray docstrings by Victor Stinner · 13 years ago
  80. e83f899 Issue #13530: Document os.lseek() result by Victor Stinner · 13 years ago
  81. 136ea49 Issue #10951: Fix a compiler warning in timemodule.c by Victor Stinner · 13 years ago
  82. e5b2ac8 #13613: fix example in re doc. by Ezio Melotti · 13 years ago
  83. 94ba691 main() now displays an error message before exiting if a command line argument by Victor Stinner · 13 years ago
  84. c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  85. 8744881 Issue #13545: Fix platform.libc_version() is the SO version is missing by Victor Stinner · 13 years ago
  86. 7158e06 Issue #13597: Improve documentation of standard streams. by Antoine Pitrou · 13 years ago
  87. 2e87208 Fix the fix for issue #12149: it was incorrect, although it had the side by Antoine Pitrou · 13 years ago
  88. b7288a7 Issue #13591: Moving the NEWS line to the right release. by Meador Inge · 13 years ago
  89. 416f12d Issue #13591: import_module potentially imports a module twice. by Meador Inge · 13 years ago
  90. 061c028 Issue #4625: add NEWS entry. by Ned Deily · 13 years ago
  91. f505b74 Issue #4625: If IDLE cannot write to its recent file or breakpoint by Ned Deily · 13 years ago
  92. 83ef254 Issue #13453: Fix a race condition in test_poplib. by Charles-François Natali · 13 years ago
  93. 10db4de Issue #4028: Make multiprocessing build on SunOS. by Charles-François Natali · 13 years ago
  94. 3bfc65a Issue #13505: Make pickling of bytes object compatible with Python 2. by Alexandre Vassalotti · 13 years ago
  95. 7b7e39a #6570: clarify tutorial section about keyword arguments. by Ezio Melotti · 13 years ago
  96. 91621e2 #13549: improve tutorial section about listcomps. by Ezio Melotti · 13 years ago
  97. b870aa1 we're always going to have gc by Benjamin Peterson · 13 years ago
  98. 964561b you can't get resource.error if you can't import resource by Benjamin Peterson · 13 years ago
  99. 13859bf Issue #13453: Catch EAI_FAIL in support.transient_internet. by Charles-François Natali · 13 years ago
  100. 0c6cbbd Fix doc typo. by Lars Gustäbel · 13 years ago