1. 6db4944 Issue #13635: Add ssl.OP_CIPHER_SERVER_PREFERENCE, so that SSL servers by Antoine Pitrou · 13 years ago
  2. bfaa79a Issue #11867: Make test_mailbox.test_lock_conflict deterministic (and fix a by Charles-François Natali · 13 years ago
  3. 78ed83d Issue #11867: Make test_mailbox.test_lock_conflict deterministic (and fix a by Charles-François Natali · 13 years ago
  4. ca9afca #13576: merge with 3.2. by Ezio Melotti · 13 years ago
  5. 62f3d03 #13576: add tests about the handling of (possibly broken) condcoms. by Ezio Melotti · 13 years ago
  6. 5ce6f8e #13387: merge with 3.2. by Ezio Melotti · 13 years ago
  7. 80a61e8 #13387: rephrase unclear sentence. by Ezio Melotti · 13 years ago
  8. a699a2d Merge 3.2 by Michael Foord · 13 years ago
  9. a51623b Fix inspect.getattr_static to work on modules (again). Closes issue 11813. by Michael Foord · 13 years ago
  10. 8f23be7 iobench.py: add more info in the header by Victor Stinner · 13 years ago
  11. 3573476 (Merge 3.2) Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 13 years ago
  12. bd206e2 Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 13 years ago
  13. bd0850b import.c now catchs _Py_stat() exceptions by Victor Stinner · 13 years ago
  14. 7bfe899 Followup to #7502: add __hash__ method and tests. by Antoine Pitrou · 13 years ago
  15. 165b128 Followup to #7502: add __hash__ method and tests. by Antoine Pitrou · 13 years ago
  16. 83250bb Merge by Antoine Pitrou · 13 years ago
  17. f928b5d Merge with 3.2. by Georg Brandl · 13 years ago
  18. 92ed387 Merge by Antoine Pitrou · 13 years ago
  19. 0d81c13 Issue #13617: Document that the result of the conversion of a Unicode object to by Victor Stinner · 13 years ago
  20. ac0675c Small clarification in docstring of dict.update(): the positional argument is not required. by Georg Brandl · 13 years ago
  21. 92d4acb Issue #7502: Fix equality comparison for DocTestCase instances. by Antoine Pitrou · 13 years ago
  22. a742526 Merge by Antoine Pitrou · 13 years ago
  23. 2bc801c Issue #7502: Fix equality comparison for DocTestCase instances. by Antoine Pitrou · 13 years ago
  24. 6fbd525 Issue #13617: Document that the result of the conversion of a Unicode object to by Victor Stinner · 13 years ago
  25. 0f694d7 Merge by Antoine Pitrou · 13 years ago
  26. fb0901c In the test SSL server, also output the cipher name by Antoine Pitrou · 13 years ago
  27. dec36b6 Null merge. by Charles-François Natali · 13 years ago
  28. b055bf6 Issue #11870: threading: Properly reinitialize threads internal locks and by Charles-François Natali · 13 years ago
  29. 6d5f9e7 Issue #11870: threading: Properly reinitialize threads internal locks and by Charles-François Natali · 13 years ago
  30. 3c4dcea Issue #8035: urllib: Fix a bug where the client could remain stuck after a by Charles-François Natali · 13 years ago
  31. cf53ae2 Issue #8035: urllib: Fix a bug where the client could remain stuck after a by Charles-François Natali · 13 years ago
  32. 6099a03 Issue #13624: Write a specialized UTF-8 encoder to allow more optimization by Victor Stinner · 13 years ago
  33. b66dcb6 Null merge by Antoine Pitrou · 13 years ago
  34. 73f53b5 Optimize str * n for len(str)==1 and UCS-2 or UCS-4 by Victor Stinner · 13 years ago
  35. a94a0e9 Issue #13522: Fix _Py_co_pow() documentation by Victor Stinner · 13 years ago
  36. b99bb20 Issue #13522: Fix _Py_co_pow() documentation by Victor Stinner · 13 years ago
  37. f644110 Issue #13621: Optimize str.replace(char1, char2) by Victor Stinner · 13 years ago
  38. b511aca Issue #13522: document error return values of some float and complex C API functions. by Antoine Pitrou · 13 years ago
  39. 07b1c87 Issue #13522: document error return values of some float and complex C API functions. by Antoine Pitrou · 13 years ago
  40. f8eac00 Issue #13623: Fix a performance regression introduced by issue #12170 in by Victor Stinner · 13 years ago
  41. e010fc0 Issue #11231: Fix bytes and bytearray docstrings by Victor Stinner · 13 years ago
  42. bb2e9c4 Issue #11231: Fix bytes and bytearray docstrings by Victor Stinner · 13 years ago
  43. 25ec056 Issue #13530: Document os.lseek() result by Victor Stinner · 13 years ago
  44. e83f899 Issue #13530: Document os.lseek() result by Victor Stinner · 13 years ago
  45. bb305de Merge by Victor Stinner · 13 years ago
  46. ab87021 Issue #10951: Fix compiler warnings in timemodule.c and unicodeobject.c by Victor Stinner · 13 years ago
  47. 136ea49 Issue #10951: Fix a compiler warning in timemodule.c by Victor Stinner · 13 years ago
  48. 0ba5af2 Move PyUnicode_WCHAR_KIND outside PyUnicode_Kind enum by Victor Stinner · 13 years ago
  49. e85488c Mention that level can be an int or str in the setLevel docstring. by Gregory P. Smith · 13 years ago
  50. 564a42c Issue #12809: Expose IP_TRANSPARENT in the socket module. Patch by Michael by Charles-François Natali · 13 years ago
  51. f2fe7f0 fix possible NULL dereference by Benjamin Peterson · 13 years ago
  52. 2f19707 The locale decoder raises a UnicodeDecodeError instead of an OSError by Victor Stinner · 13 years ago
  53. 1b57967 Issue #13560: Locale codec functions use the classic "errors" parameter, by Victor Stinner · 13 years ago
  54. ab59594 What's New in Python 3.3: complete the deprecation list by Victor Stinner · 13 years ago
  55. 1f33f2b Issue #13560: os.strerror() now uses the current locale encoding instead of UTF-8 by Victor Stinner · 13 years ago
  56. f2ea71f Issue #13560: Add PyUnicode_EncodeLocale() by Victor Stinner · 13 years ago
  57. 9987d93 #13613: merge with 3.2. by Ezio Melotti · 13 years ago
  58. e5b2ac8 #13613: fix example in re doc. by Ezio Melotti · 13 years ago
  59. af02e1c Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() by Victor Stinner · 13 years ago
  60. 3607e3d (Merge 3.2) main() now displays an error message before exiting if a command by Victor Stinner · 13 years ago
  61. 94ba691 main() now displays an error message before exiting if a command line argument by Victor Stinner · 13 years ago
  62. 1637487 Skip test if the path is too long for a AF_UNIX socket by Antoine Pitrou · 13 years ago
  63. 6ec29e2 Issue #8373: The filesystem path of AF_UNIX sockets now uses the filesystem by Antoine Pitrou · 13 years ago
  64. ab0e9f7 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  65. c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  66. e2b2bf5 Add ACKS entry for 57f0af61da53. by Antoine Pitrou · 13 years ago
  67. 093ce9c Issue #6695: Full garbage collection runs now clear the freelist of set objects. by Antoine Pitrou · 13 years ago
  68. c144a93 property -> staticmethod by Benjamin Peterson · 13 years ago
  69. 518e517 merge heads by Benjamin Peterson · 13 years ago
  70. ca81bf7 fix this test to actually test something (closes #13606) by Benjamin Peterson · 13 years ago
  71. e0a669e Close #13596: Only recompile Lib/_sysconfigdata.py when needed by Victor Stinner · 13 years ago
  72. 57c9c7b merge heads by Benjamin Peterson · 13 years ago
  73. b3132bd input() in this sense is gone by Benjamin Peterson · 13 years ago
  74. 9c49036 (Merge 3.2) Issue #13545: Fix platform.libc_version() is the SO version is missing by Victor Stinner · 13 years ago
  75. 8744881 Issue #13545: Fix platform.libc_version() is the SO version is missing by Victor Stinner · 13 years ago
  76. bfebb7b improve abstract property support (closes #11610) by Benjamin Peterson · 13 years ago
  77. a8ff01c Issue #13597: Improve documentation of standard streams. by Antoine Pitrou · 13 years ago
  78. 7158e06 Issue #13597: Improve documentation of standard streams. by Antoine Pitrou · 13 years ago
  79. e0e2735 Fix OSError.__init__ and OSError.__new__ so that each of them can be by Antoine Pitrou · 13 years ago
  80. d73a9ac Fix the fix for issue #12149: it was incorrect, although it had the side by Antoine Pitrou · 13 years ago
  81. 2e87208 Fix the fix for issue #12149: it was incorrect, although it had the side by Antoine Pitrou · 13 years ago
  82. 96ff084 Issue #13593: updating the importlib utility decorators for __qualname__. by Meador Inge · 13 years ago
  83. c2f9874 Issue #13591: Moving the NEWS line to the right release. by Meador Inge · 13 years ago
  84. b7288a7 Issue #13591: Moving the NEWS line to the right release. by Meador Inge · 13 years ago
  85. d7afeee Issue #13591: import_module potentially imports a module twice. by Meador Inge · 13 years ago
  86. 416f12d Issue #13591: import_module potentially imports a module twice. by Meador Inge · 13 years ago
  87. abbcd08 Issue #4625: Add NEWS entry. by Ned Deily · 13 years ago
  88. 061c028 Issue #4625: add NEWS entry. by Ned Deily · 13 years ago
  89. 1b0b6ae Issue #4625: If IDLE cannot write to its recent file or breakpoint by Ned Deily · 13 years ago
  90. f505b74 Issue #4625: If IDLE cannot write to its recent file or breakpoint by Ned Deily · 13 years ago
  91. 77e1bfc Issue #13453: Fix a race condition in test_poplib. by Charles-François Natali · 13 years ago
  92. 83ef254 Issue #13453: Fix a race condition in test_poplib. by Charles-François Natali · 13 years ago
  93. 486af72 Null merge - Issue #4028: Make multiprocessing build on SunOS. by Charles-François Natali · 13 years ago
  94. 10db4de Issue #4028: Make multiprocessing build on SunOS. by Charles-François Natali · 13 years ago
  95. 556ba04 Fix #13449: add 'blocking' parameter to sched.scheduler.run() so that the scheduler can be used in non-blocking applications by Giampaolo Rodola' · 13 years ago
  96. 73520d5 Fix #8684: make sched.scheduler class thread-safe by Giampaolo Rodola' · 13 years ago
  97. a23d65c Merge 3.2 by Alexandre Vassalotti · 13 years ago
  98. 3bfc65a Issue #13505: Make pickling of bytes object compatible with Python 2. by Alexandre Vassalotti · 13 years ago
  99. ec51cf1 #6570: merge with 3.2. by Ezio Melotti · 13 years ago
  100. 7b7e39a #6570: clarify tutorial section about keyword arguments. by Ezio Melotti · 13 years ago