1. 80bc72d fix PyCompactUnicodeObject doc (test) by Victor Stinner · 14 years ago
  2. 85530aa Merge by Michael Foord · 14 years ago
  3. 3ba95f8 Metaclasses with metaclasses with a __dict__ descriptor can no longer trigger code execution with inspect.getattr_static. by Michael Foord · 14 years ago
  4. 059226b merge heads by Benjamin Peterson · 14 years ago
  5. 6b15c90 Use context managers in test_ssl to simplify test writing. by Antoine Pitrou · 14 years ago
  6. 65a3f4b Use context managers in test_ssl to simplify test writing. by Antoine Pitrou · 14 years ago
  7. f0a49a9 Issue #13645: fix test_import failure when run immediately after test_coding. by Antoine Pitrou · 14 years ago
  8. 28f8bee Issue #13645: fix test_import failure when run immediately after test_coding. by Antoine Pitrou · 14 years ago
  9. c909599 Docs and News update for Issue13620. Chrome support in webbrowser.py by Senthil Kumaran · 14 years ago
  10. ea6b418 Issue 13620 - Support chrome browser in webbrowser.py module. by Senthil Kumaran · 14 years ago
  11. d5ec134 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 · 14 years ago
  12. 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 · 14 years ago
  13. de911b2 Issue #12708: Add starmap() and starmap_async() methods (similar to itertools.starmap()) to multiprocessing.Pool. by Antoine Pitrou · 14 years ago
  14. 12f65d1 Issue #1785: Fix inspect and pydoc with misbehaving descriptors. by Antoine Pitrou · 14 years ago
  15. 86a8a9a Issue #1785: Fix inspect and pydoc with misbehaving descriptors. by Antoine Pitrou · 14 years ago
  16. 501da61 Fix ssl module compilation if ECDH support was disabled in the OpenSSL build. by Antoine Pitrou · 14 years ago
  17. c0b95d1 4 space indentation by Benjamin Peterson · 14 years ago
  18. ead6b53 fix spacing around switch statements by Benjamin Peterson · 14 years ago
  19. 822c790 merge 3.2 by Benjamin Peterson · 14 years ago
  20. 53aa1d7 fix possible if unlikely leak by Benjamin Peterson · 14 years ago
  21. 97193c1 merge 3.2 by Benjamin Peterson · 14 years ago
  22. 0f1e3ac note the blinding speed of these functions by Benjamin Peterson · 14 years ago
  23. 1743db5 Merge by Antoine Pitrou · 14 years ago
  24. 0831676 Issue #13637: "a2b" functions in the binascii module now accept ASCII-only unicode strings. by Antoine Pitrou · 14 years ago
  25. 29b15d1 Followup to issue #11867: Use socketpair(), since FreeBSD < 8 doesn't really by Charles-François Natali · 14 years ago
  26. bf38315 Followup to issue #11867: Use socketpair(), since FreeBSD < 8 doesn't really by Charles-François Natali · 14 years ago
  27. 8691bff Fix for buggy test by Antoine Pitrou · 14 years ago
  28. 8abdb8a Issue #13634: Add support for querying and disabling SSL compression. by Antoine Pitrou · 14 years ago
  29. 3563b18 merge 3.2 by Benjamin Peterson · 14 years ago
  30. 1c92cfe don't mention implementation detail by Benjamin Peterson · 14 years ago
  31. 52e2cc8 backout 7876cd49300d: Move PyUnicode_WCHAR_KIND outside PyUnicode_Kind enum by Victor Stinner · 14 years ago
  32. 2fa2281 (bug #8684) fix 'fedora without thread buildbot' as per http://bugs.python.org/issue8684 by Giampaolo Rodola' · 14 years ago
  33. 2b1cc89 _Py_fopen now allows bytes filenames under non-Windows platforms. by Antoine Pitrou · 14 years ago
  34. 923df6f Issue #13627: Add support for SSL Elliptic Curve-based Diffie-Hellman by Antoine Pitrou · 14 years ago
  35. d130195 Issue #5424: add tests for inet_ntoa, inet_ntop, inet_aton and inet_pton. by Antoine Pitrou · 14 years ago
  36. 7ded21e Issue #5424: add tests for inet_ntoa, inet_ntop, inet_aton and inet_pton. by Antoine Pitrou · 14 years ago
  37. b01c32d Issue #13453: Try to increase some socket timeouts to make some buildbots stop by Charles-François Natali · 14 years ago
  38. 4ce2f36 Issue #13453: Try to increase some socket timeouts to make some buildbots stop by Charles-François Natali · 14 years ago
  39. d974393 (Merge 3.2) Issue #13628: python-gdb.py is now able to retrieve more frames in by Victor Stinner · 14 years ago
  40. d208416 Issue #13628: python-gdb.py is now able to retrieve more frames in the Python by Victor Stinner · 14 years ago
  41. 6db4944 Issue #13635: Add ssl.OP_CIPHER_SERVER_PREFERENCE, so that SSL servers by Antoine Pitrou · 14 years ago
  42. bfaa79a Issue #11867: Make test_mailbox.test_lock_conflict deterministic (and fix a by Charles-François Natali · 14 years ago
  43. 78ed83d Issue #11867: Make test_mailbox.test_lock_conflict deterministic (and fix a by Charles-François Natali · 14 years ago
  44. ca9afca #13576: merge with 3.2. by Ezio Melotti · 14 years ago
  45. 62f3d03 #13576: add tests about the handling of (possibly broken) condcoms. by Ezio Melotti · 14 years ago
  46. 5ce6f8e #13387: merge with 3.2. by Ezio Melotti · 14 years ago
  47. 80a61e8 #13387: rephrase unclear sentence. by Ezio Melotti · 14 years ago
  48. a699a2d Merge 3.2 by Michael Foord · 14 years ago
  49. a51623b Fix inspect.getattr_static to work on modules (again). Closes issue 11813. by Michael Foord · 14 years ago
  50. 8f23be7 iobench.py: add more info in the header by Victor Stinner · 14 years ago
  51. 3573476 (Merge 3.2) Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 14 years ago
  52. bd206e2 Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 14 years ago
  53. bd0850b import.c now catchs _Py_stat() exceptions by Victor Stinner · 14 years ago
  54. 7bfe899 Followup to #7502: add __hash__ method and tests. by Antoine Pitrou · 14 years ago
  55. 165b128 Followup to #7502: add __hash__ method and tests. by Antoine Pitrou · 14 years ago
  56. 83250bb Merge by Antoine Pitrou · 14 years ago
  57. f928b5d Merge with 3.2. by Georg Brandl · 14 years ago
  58. 92ed387 Merge by Antoine Pitrou · 14 years ago
  59. 0d81c13 Issue #13617: Document that the result of the conversion of a Unicode object to by Victor Stinner · 14 years ago
  60. ac0675c Small clarification in docstring of dict.update(): the positional argument is not required. by Georg Brandl · 14 years ago
  61. 92d4acb Issue #7502: Fix equality comparison for DocTestCase instances. by Antoine Pitrou · 14 years ago
  62. a742526 Merge by Antoine Pitrou · 14 years ago
  63. 2bc801c Issue #7502: Fix equality comparison for DocTestCase instances. by Antoine Pitrou · 14 years ago
  64. 6fbd525 Issue #13617: Document that the result of the conversion of a Unicode object to by Victor Stinner · 14 years ago
  65. 0f694d7 Merge by Antoine Pitrou · 14 years ago
  66. fb0901c In the test SSL server, also output the cipher name by Antoine Pitrou · 14 years ago
  67. dec36b6 Null merge. by Charles-François Natali · 14 years ago
  68. b055bf6 Issue #11870: threading: Properly reinitialize threads internal locks and by Charles-François Natali · 14 years ago
  69. 6d5f9e7 Issue #11870: threading: Properly reinitialize threads internal locks and by Charles-François Natali · 14 years ago
  70. 3c4dcea Issue #8035: urllib: Fix a bug where the client could remain stuck after a by Charles-François Natali · 14 years ago
  71. cf53ae2 Issue #8035: urllib: Fix a bug where the client could remain stuck after a by Charles-François Natali · 14 years ago
  72. 6099a03 Issue #13624: Write a specialized UTF-8 encoder to allow more optimization by Victor Stinner · 14 years ago
  73. b66dcb6 Null merge by Antoine Pitrou · 14 years ago
  74. 73f53b5 Optimize str * n for len(str)==1 and UCS-2 or UCS-4 by Victor Stinner · 14 years ago
  75. a94a0e9 Issue #13522: Fix _Py_co_pow() documentation by Victor Stinner · 14 years ago
  76. b99bb20 Issue #13522: Fix _Py_co_pow() documentation by Victor Stinner · 14 years ago
  77. f644110 Issue #13621: Optimize str.replace(char1, char2) by Victor Stinner · 14 years ago
  78. b511aca Issue #13522: document error return values of some float and complex C API functions. by Antoine Pitrou · 14 years ago
  79. 07b1c87 Issue #13522: document error return values of some float and complex C API functions. by Antoine Pitrou · 14 years ago
  80. f8eac00 Issue #13623: Fix a performance regression introduced by issue #12170 in by Victor Stinner · 14 years ago
  81. e010fc0 Issue #11231: Fix bytes and bytearray docstrings by Victor Stinner · 14 years ago
  82. bb2e9c4 Issue #11231: Fix bytes and bytearray docstrings by Victor Stinner · 14 years ago
  83. 25ec056 Issue #13530: Document os.lseek() result by Victor Stinner · 14 years ago
  84. e83f899 Issue #13530: Document os.lseek() result by Victor Stinner · 14 years ago
  85. bb305de Merge by Victor Stinner · 14 years ago
  86. ab87021 Issue #10951: Fix compiler warnings in timemodule.c and unicodeobject.c by Victor Stinner · 14 years ago
  87. 136ea49 Issue #10951: Fix a compiler warning in timemodule.c by Victor Stinner · 14 years ago
  88. 0ba5af2 Move PyUnicode_WCHAR_KIND outside PyUnicode_Kind enum by Victor Stinner · 14 years ago
  89. e85488c Mention that level can be an int or str in the setLevel docstring. by Gregory P. Smith · 14 years ago
  90. 564a42c Issue #12809: Expose IP_TRANSPARENT in the socket module. Patch by Michael by Charles-François Natali · 14 years ago
  91. f2fe7f0 fix possible NULL dereference by Benjamin Peterson · 14 years ago
  92. 2f19707 The locale decoder raises a UnicodeDecodeError instead of an OSError by Victor Stinner · 14 years ago
  93. 1b57967 Issue #13560: Locale codec functions use the classic "errors" parameter, by Victor Stinner · 14 years ago
  94. ab59594 What's New in Python 3.3: complete the deprecation list by Victor Stinner · 14 years ago
  95. 1f33f2b Issue #13560: os.strerror() now uses the current locale encoding instead of UTF-8 by Victor Stinner · 14 years ago
  96. f2ea71f Issue #13560: Add PyUnicode_EncodeLocale() by Victor Stinner · 14 years ago
  97. 9987d93 #13613: merge with 3.2. by Ezio Melotti · 14 years ago
  98. e5b2ac8 #13613: fix example in re doc. by Ezio Melotti · 14 years ago
  99. af02e1c Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() by Victor Stinner · 14 years ago
  100. 3607e3d (Merge 3.2) main() now displays an error message before exiting if a command by Victor Stinner · 14 years ago