1. c42512d #13494: merge with 3.2. by Ezio Melotti · 13 years ago
  2. c1f26f6 #13494: s/cast/convert/. Also add a link. by Ezio Melotti · 13 years ago
  3. a9a2ddf #13499: merge with 3.2. by Ezio Melotti · 13 years ago
  4. b1b3fd2 #13499: fix example adding >>> before the comments. by Ezio Melotti · 13 years ago
  5. b3d188f #8414: merge with 3.2. by Ezio Melotti · 13 years ago
  6. 6cc5bf7 #8414: add more tests for "assert". Initial patch by Gregory Nofi. by Ezio Melotti · 13 years ago
  7. 47862d4 Issue #9530: Fix undefined behaviour due to signed overflow in Python/formatter_unicode.c. by Mark Dickinson · 13 years ago
  8. 0a54cf1 Fix PyObject_Repr(): don't call PyUnicode_READY() if res is NULL by Victor Stinner · 13 years ago
  9. b37b174 Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0) by Victor Stinner · 13 years ago
  10. 08b523a MultibyteCodec_Decode() catchs PyUnicode_AS_UNICODE() failures by Victor Stinner · 13 years ago
  11. 3ba82aa c-api: Replace PyUnicodeObject* by PyObject* in "U" format doc by Victor Stinner · 13 years ago
  12. ee45009 PyCodec_IgnoreErrors() avoids the deprecated "u#" format by Victor Stinner · 13 years ago
  13. db88ae5 PyObject_Repr() ensures that the result is a ready Unicode string by Victor Stinner · 13 years ago
  14. 59bb0e0 Credit Per Øyvind Karlsen for the initial implementation of the lzma module (issue #6715). by Nadeem Vawda · 13 years ago
  15. 97ba26b Issue #1040439: better document how to compile and link an embedded Python interpreter. by Antoine Pitrou · 13 years ago
  16. 71bca34 Issue #1040439: better document how to compile and link an embedded Python interpreter. by Antoine Pitrou · 13 years ago
  17. 44ae4a2 Make error handling in BZ2File.{readable,seekable,writable,fileno} consistent with TextIOWrapper. by Nadeem Vawda · 13 years ago
  18. 3ff069e Issue #6715: Add module for compression using the LZMA algorithm. by Nadeem Vawda · 13 years ago
  19. 551ac95 Py_UNICODE_HIGH_SURROGATE() and Py_UNICODE_LOW_SURROGATE() macros by Victor Stinner · 13 years ago
  20. 7b578b3 Mention hashable memoryviews, and reformat. by Antoine Pitrou · 13 years ago
  21. 0599b5b Add subheaders to make PEP 393 description clearer by Antoine Pitrou · 13 years ago
  22. c8e0320 Merge 3.2 by Éric Araujo · 13 years ago
  23. a74f8ef Fix inspect.getmodule to use a copy of sys.modules for iteration (#13487). by Éric Araujo · 13 years ago
  24. c4d7d8c Mark up constants in sockets docs as such by Éric Araujo · 13 years ago
  25. e1886bf Fix instructions on how to rebuild some modules by Éric Araujo · 13 years ago
  26. ff91306 Add a regrtest cleanup check for shutil registries by Éric Araujo · 13 years ago
  27. a2b89e3 Fix last remaining references to ex-devguide by Éric Araujo · 13 years ago
  28. 2bddc53 Fix typo (#13467) by Éric Araujo · 13 years ago
  29. aa35b00 cleanup setup.py for curses options by Victor Stinner · 13 years ago
  30. 5d7c9ab (Merge 3.2) Fix curses module for strict SysV implementation (without has_key function) by Victor Stinner · 13 years ago
  31. b9bb1f4 Fix curses module for strict SysV implementation (without has_key function) by Victor Stinner · 13 years ago
  32. 1439c77 Merge test_xmlrpc_net fixes (issue #13434) by Antoine Pitrou · 13 years ago
  33. f1c141b Fix resource warning in test_xmlrpc_net by Antoine Pitrou · 13 years ago
  34. 5a88c38 Issue #13434: skip the time.xmlrpc.com test, and reenable the buildbot test. by Antoine Pitrou · 13 years ago
  35. 39a73a4 Issue #7111: Python can now be run without a stdin, stdout or stderr stream. by Antoine Pitrou · 13 years ago
  36. 11942a5 Issue #7111: Python can now be run without a stdin, stdout or stderr stream. by Antoine Pitrou · 13 years ago
  37. 31b798d Issue #12618: py_compile cannot create files in current directory by Meador Inge · 13 years ago
  38. 22b9b37 Issue #12618: py_compile cannot create files in current directory by Meador Inge · 13 years ago
  39. d1b097f Issue #13415: test_curses skips unencodable characters by Victor Stinner · 13 years ago
  40. eee0e44 Null merge. by Charles-François Natali · 13 years ago
  41. 7be8f68 Issue #13415: Skip test_os.test_unset_error on FreeBSD and OS X. by Charles-François Natali · 13 years ago
  42. 9cbe9c5 Null merge. by Charles-François Natali · 13 years ago
  43. 6613c18 Issue #13415: Test in configure if unsetenv() has a return value or not. by Charles-François Natali · 13 years ago
  44. 66f412e MERGE: Closes issue #13488: Some old preprocessors have problem with #define not in the first column by Jesus Cea · 13 years ago
  45. 6d47db3 Closes issue #13488: Some old preprocessors have problem with #define not in the first column by Jesus Cea · 13 years ago
  46. 756c6ec Issue #13415: Help to locate curses.h when _curses module is linked to ncursesw by Victor Stinner · 13 years ago
  47. 5604ef3 Issue #13444: When stdout has been closed explicitly, we should not attempt to flush it at shutdown and print an error. by Antoine Pitrou · 13 years ago
  48. d7c8fbf Issue #13444: When stdout has been closed explicitly, we should not attempt to flush it at shutdown and print an error. by Antoine Pitrou · 13 years ago
  49. 59ff2c5 Issue #12618: fix py_compile unit tests to handle different drives on Windows by Meador Inge · 13 years ago
  50. fb36b3f Issue #12618: fix py_compile unit tests to handle different drives on Windows by Meador Inge · 13 years ago
  51. 6a5dcd4 sched.py: fix test_queue by making sure that queue property returns an orderd list of upcoming events by Giampaolo Rodola' · 13 years ago
  52. 2966f10 Issue #13415: Skip test_os.test_unset_error on FreeBSD < 7 and OS X < 10.6 by Charles-François Natali · 13 years ago
  53. 261a6d7 Issue #12618: create unit tests for the py_compile module by Meador Inge · 13 years ago
  54. 6f16660 Issue #12618: create unit tests for the py_compile module by Meador Inge · 13 years ago
  55. 4bc45b7 Issue #13380: add an internal function for resetting the ctypes caches by Meador Inge · 13 years ago
  56. 11e3813 Issue #13380: add an internal function for resetting the ctypes caches by Meador Inge · 13 years ago
  57. 4d09873 Some libcs' snprintf may output a leading minus sign when %p-formatting by Antoine Pitrou · 13 years ago
  58. c366117 Merge heads by Antoine Pitrou · 13 years ago
  59. f0effe6 Better resolution for issue #11849: Ensure that free()d memory arenas are really released by Antoine Pitrou · 13 years ago
  60. 0fdfceb Issue #12567: The curses module uses Unicode functions for Unicode arguments by Victor Stinner · 13 years ago
  61. c248476 Issue #12856: Ensure child processes do not inherit the parent's random seed for filename generation in the tempfile module. by Antoine Pitrou · 13 years ago
  62. 4558bad Issue #12856: Ensure child processes do not inherit the parent's random seed for filename generation in the tempfile module. by Antoine Pitrou · 13 years ago
  63. cad939b NEWS: fix the issue number for PyUnicode_EncodeDecimal change by Victor Stinner · 13 years ago
  64. 6345be9 Close #13093: PyUnicode_EncodeDecimal() doesn't support error handlers by Victor Stinner · 13 years ago
  65. e7ede06 Typo by Antoine Pitrou · 13 years ago
  66. 6bbd76b Update What's new for PEP 3155 by Antoine Pitrou · 13 years ago
  67. 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
  68. 0e86a58 Issue #9957: SpooledTemporaryFile.truncate() now accepts an optional size parameter, as other file-like objects. by Antoine Pitrou · 13 years ago
  69. e333d00 Clarify concatenation behaviour of immutable strings, and remove explicit by Antoine Pitrou · 13 years ago
  70. fd9ebd4 Clarify concatenation behaviour of immutable strings, and remove explicit by Antoine Pitrou · 13 years ago
  71. 0481f4b fix some typos in Doc/c-api/memoryview.rst by Eli Bendersky · 13 years ago
  72. 5a53f36 fix some typos in Doc/c-api/memoryview.rst by Eli Bendersky · 13 years ago
  73. 61ea8a0 Add a "What's New" entry for #12170 by Petri Lehtinen · 13 years ago
  74. 5d036e1 merge from 3.2 testFnNames is assigned twice. by Senthil Kumaran · 13 years ago
  75. f27be5c testFnNames is assigned twice. by Senthil Kumaran · 13 years ago
  76. 984890f Close #13415: Test in configure if unsetenv() has a return value or not. by Victor Stinner · 13 years ago
  77. 1518e87 and back to the "magic" formula (with a comment) it is by Benjamin Peterson · 13 years ago
  78. d2b0217 Merged documentation addition from 3.2. by Vinay Sajip · 13 years ago
  79. 631a7e2 Added a configuration dictionary example to the logging cookbook. by Vinay Sajip · 13 years ago
  80. ce378d1 Closes #13459: Merged fix from 3.2. by Vinay Sajip · 13 years ago
  81. 287f246 Closes #13459: Clarified documentation on Logger.propagate. Thanks to Mike Fogel for the patch. by Vinay Sajip · 13 years ago
  82. 759345f merge 3.2 (null) by Benjamin Peterson · 13 years ago
  83. 06403cf decref correct object by Benjamin Peterson · 13 years ago
  84. e8eb0e8 merge 3.2 by Benjamin Peterson · 13 years ago
  85. 4bb867d plug refleak by Benjamin Peterson · 13 years ago
  86. e0bcca5 merge heads by Benjamin Peterson · 13 years ago
  87. 5944c36 cave to those who like readable code by Benjamin Peterson · 13 years ago
  88. bc53032 Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with a subjectAltName. by Antoine Pitrou · 13 years ago
  89. 116d6b9 Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with a subjectAltName. by Antoine Pitrou · 13 years ago
  90. c8cf4df revert cset 6a0da9b65e54 against sched.py committed by accident by Giampaolo Rodola' · 13 years ago
  91. 9329029 (Merge 3.2) Issue #13436: Fix unsetenv() test on Windows by Victor Stinner · 13 years ago
  92. b3f8268 Issue #13436: Fix unsetenv() test on Windows by Victor Stinner · 13 years ago
  93. cbbd562 Merge branch default by Victor Stinner · 13 years ago
  94. 896f471 Merge branch 3.2 by Victor Stinner · 13 years ago
  95. 6517095 (Merge 3.2) Issue #13415: os.unsetenv() doesn't ignore errors anymore. by Victor Stinner · 13 years ago
  96. 942d5ba Merge branch 3.2 by Amaury Forgeot d'Arc · 13 years ago
  97. 60b385e Issue #13415: os.unsetenv() doesn't ignore errors anymore. by Victor Stinner · 13 years ago
  98. 5e8f810 Issue #13436: commit regenerated Python-ast.c by Amaury Forgeot d'Arc · 13 years ago
  99. 58e8761 Issue #13436: Fix a bogus error message when an AST object was passed by Amaury Forgeot d'Arc · 13 years ago
  100. 0268675 fix compiler warning by implementing this more cleverly by Benjamin Peterson · 13 years ago