1. 28e401e Issue #13392: Writing a pyc file should now be atomic under Windows as well. by Antoine Pitrou · 13 years ago
  2. 0c929d9 Issue #13303: Fix bytecode file default permission. by Charles-François Natali · 13 years ago
  3. d10759f Make _PyUnicode_FromId return borrowed references. by Martin v. Löwis · 13 years ago
  4. 50add04 quote the type name for improved readability by Philip Jenvey · 13 years ago
  5. 5ee9d8a Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode by Antoine Pitrou · 13 years ago
  6. 0d776b1 Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode by Antoine Pitrou · 13 years ago
  7. 9028a10 Issue #13343: Fix a SystemError when a lambda expression uses a global by Amaury Forgeot d'Arc · 13 years ago
  8. 97c1bef Issue #13343: Fix a SystemError when a lambda expression uses a global by Amaury Forgeot d'Arc · 13 years ago
  9. c06bb7a Avoid the Py_UNICODE type in codecs.c by Victor Stinner · 13 years ago
  10. b31f1bc PyCodec_XMLCharRefReplaceError(): Remove unused variable by Victor Stinner · 13 years ago
  11. 8ba7930 Fix C89 incompatibility. by Martin v. Löwis · 13 years ago
  12. b09af03 Port error handlers from Py_UNICODE indexing to code point indexing. by Martin v. Löwis · 13 years ago
  13. e640521 Merge follow-up for #11254 and other changes from 3.2 by Éric Araujo · 13 years ago
  14. 5df1108 Add signatures to the docstring of functions added to imp by PEP 3147 by Éric Araujo · 13 years ago
  15. 8db076c Issue #10363: Deallocate global locks in Py_Finalize(). by Antoine Pitrou · 13 years ago
  16. 4d46c2a Remove unused variable. by Florent Xicluna · 13 years ago
  17. de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
  18. e695eec Issue #13303: Fix a race condition in the bytecode file creation. by Charles-François Natali · 13 years ago
  19. f4afa43 Issue #13226: Update sys.setdlopenflags() docstring by Victor Stinner · 13 years ago
  20. f45dee9 Port import_module_level to Unicode API. by Martin v. Löwis · 13 years ago
  21. 6fbbc33 Issue #10363: Deallocate global locks in Py_Finalize(). by Antoine Pitrou · 13 years ago
  22. 796ea53 Port PyImport_ReloadModule to Unicode API. by Martin v. Löwis · 13 years ago
  23. 908ae24 Merge 3.2 (linked to issue #1294232) by Florent Xicluna · 13 years ago
  24. b528fcf Fix test_imp failure under Windows by Antoine Pitrou · 13 years ago
  25. 9af29d3 Rewrite find_module_path using unicode API. by Martin v. Löwis · 13 years ago
  26. 2cc0cc5 Fix off-by-one error. by Martin v. Löwis · 13 years ago
  27. fadcd31 Drop unused macros. Use CACHEDIR consistently. by Martin v. Löwis · 13 years ago
  28. 8a0ef78 Rewrite make_source_pathname using Unicode API. by Martin v. Löwis · 13 years ago
  29. 30260a7 Add ready checks for make_compiled_pathname. by Martin v. Löwis · 13 years ago
  30. 2db7286 Reformulate make_compiled_pathname in terms of unicode objects. by Martin v. Löwis · 13 years ago
  31. 9715d26 Merge issue 1294232 patch from 3.2 by Nick Coghlan · 13 years ago
  32. 3a50e70 Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore by Victor Stinner · 13 years ago
  33. 9ea8e4c Instantiate the OS-related exception as soon as we raise it, so that "except" by Victor Stinner · 13 years ago
  34. 707033a Issue #13146: Writing a pyc file is now atomic under POSIX. by Antoine Pitrou · 13 years ago
  35. 1c67dd9 Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. by Martin v. Löwis · 13 years ago
  36. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  37. f5cff56 Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 by Victor Stinner · 13 years ago
  38. 9d663d0 convertsimple(): "str without bytes" => "str without characters" by Victor Stinner · 13 years ago
  39. 5d6fbe8 Instantiate the OS-related exception as soon as we raise it, so that by Antoine Pitrou · 13 years ago
  40. 6b4883d PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. by Antoine Pitrou · 13 years ago
  41. 8c98189 Fix typo in import.c by Victor Stinner · 13 years ago
  42. c4f281e Fix misuse of PyUnicode_GET_SIZE, use PyUnicode_GET_LENGTH instead by Victor Stinner · 13 years ago
  43. beac78b Use PyUnicode_AsUnicodeAndSize() instead of PyUnicode_GET_SIZE() by Victor Stinner · 13 years ago
  44. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  45. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  46. c47adb0 Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. by Martin v. Löwis · 13 years ago
  47. 46084ba Fix find_module_path(): make the string ready by Victor Stinner · 13 years ago
  48. b62a7b2 Fix _warnings.c: make the filename string ready by Victor Stinner · 13 years ago
  49. fb9ea8c Don't check for the maximum character when copying from unicodeobject.c by Victor Stinner · 13 years ago
  50. a336de7 traceback: fix dump_ascii() for string with kind=PyUnicode_WCHAR_KIND by Victor Stinner · 13 years ago
  51. c3cec78 Add asciilib: similar to ucs1, ucs2 and ucs4 library, but specialized to ASCII by Victor Stinner · 13 years ago
  52. e1335c7 Fix usage og PyUnicode_READY() by Victor Stinner · 13 years ago
  53. d2a915d ceval.c: restore str+=str optimization by Victor Stinner · 13 years ago
  54. 67002af Check error when calling PyUnicode_AppendAndDel() by Victor Stinner · 13 years ago
  55. 1a15aba PyCodec_ReplaceErrors() uses "C" format instead of "u#" to build result by Victor Stinner · 13 years ago
  56. 014cc42 remove unused label by Benjamin Peterson · 13 years ago
  57. 0b1d348 Issue 13085: Fix some memory leaks. Patch by Stefan Krah. by Martin v. Löwis · 13 years ago
  58. 811c2f1 remove "fast-path" for (i)adding strings by Benjamin Peterson · 13 years ago
  59. bec0fda Remove commented code: str+=str is no more super-optimized by Victor Stinner · 13 years ago
  60. d9c563e modsupport.c reuses Py_UNICODE_strlen() by Victor Stinner · 13 years ago
  61. 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 13 years ago
  62. 48a2f8f #13054: sys.maxunicode is now always 0x10FFFF. by Ezio Melotti · 13 years ago
  63. fd85c3a fill_number() and format_string_internal() check for PyUnicode_CopyCharacters() failure by Victor Stinner · 13 years ago
  64. dba2dee fill_number() ensures that the 'digits' string is ready by Victor Stinner · 13 years ago
  65. afbaa20 fill_char() can now propagate an error by Victor Stinner · 13 years ago
  66. 6c7a52a Check for PyUnicode_CopyCharacters() failure by Victor Stinner · 13 years ago
  67. 4cb0de2 Rename new macros to conform to naming rules (function macros have "Py" prefix, not "PY"). by Georg Brandl · 13 years ago
  68. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  69. a1fe1f8 Merge 3.2: Issue #7732: Don't open a directory as a file anymore while by Victor Stinner · 13 years ago
  70. 53ffdc5 Issue #7732: Don't open a directory as a file anymore while importing a by Victor Stinner · 13 years ago
  71. 472d280 Issue #13002: Fix Visual Studio warning (not enough actual parameters). by Stefan Krah · 13 years ago
  72. a80b14c - Issue #13021: Missing decref on an error path. Thanks to Suman Saha for by Barry Warsaw · 13 years ago
  73. 916048d - Issue #13021: Missing decref on an error path. Thanks to Suman Saha for by Barry Warsaw · 13 years ago
  74. 9561d7c import.c: remove now useless arbitrary limit by Victor Stinner · 13 years ago
  75. 84b8e40 Merge 3.2: Fix the import machinery if there is an error on sys.path or sys.meta_path by Victor Stinner · 13 years ago
  76. 1619132 Fix the import machinery if there is an error on sys.path or sys.meta_path by Victor Stinner · 13 years ago
  77. 6f08f53 Merge 3.2 by Éric Araujo · 13 years ago
  78. 22d80bc Merge 3.2: Remove unused variable if Python is build without threads by Victor Stinner · 13 years ago
  79. 0af0306 Remove unused variable if Python is build without threads by Victor Stinner · 13 years ago
  80. 0224d4e accept bytes for the AST 'string' type by Benjamin Peterson · 13 years ago
  81. ea281a5 include header with PyAST_Validate by Benjamin Peterson · 13 years ago
  82. 832bfe2 add a AST validator (closes #12575) by Benjamin Peterson · 13 years ago
  83. e249841 add a asdl bytes type, so Bytes.s be properly typechecked by Benjamin Peterson · 13 years ago
  84. 405f32c plug refleak by Benjamin Peterson · 13 years ago
  85. 4f921c2 bytes -> bytearray by Benjamin Peterson · 13 years ago
  86. ce071ca bytes should be verboten in sum() (fixes #12654) by Benjamin Peterson · 13 years ago
  87. 0bbacc6 Branch merge by Éric Araujo · 13 years ago
  88. 906b88f Issue #12380: PyArg_ParseTuple now accepts a bytearray for the 'c' format. by Eli Bendersky · 13 years ago
  89. 2527796 Merge from 3.2 (#10318, #12255, #12043, #12417 and other fixes) by Éric Araujo · 13 years ago
  90. 6c0ba44 Fix style in code added by edba722f3b02 by Éric Araujo · 13 years ago
  91. 5a24d82 Add a test for issue #1813: getlocale() failing under a Turkish locale by Antoine Pitrou · 13 years ago
  92. cf9d3c0 Issue #1813: Fix codec lookup under Turkish locales. by Antoine Pitrou · 13 years ago
  93. f23339a Issue 12620: Make pendingbusy flag static to Py_MakePendingCalls(). by Charles-François Natali · 13 years ago
  94. 8a4b42b merge 3.2 by Benjamin Peterson · 13 years ago
  95. 180e635 None is ok for identifiers but not strings by Benjamin Peterson · 13 years ago
  96. 86f088e merge 3.2 by Benjamin Peterson · 13 years ago
  97. 2193d2b type check AST strings and identifiers by Benjamin Peterson · 13 years ago
  98. efad244 hardcode the old svn __version__ by Benjamin Peterson · 13 years ago
  99. bd9c655 merge heads by Benjamin Peterson · 13 years ago
  100. 76f7f4d excise the remains of STOP_CODE, which hasn't done anything useful for years by Benjamin Peterson · 13 years ago