1. 5816166 Port import fixes from 2.7. by Antoine Pitrou · 13 years ago
  2. 33d15f7 Port import fixes from 2.7. by Antoine Pitrou · 13 years ago
  3. abaf89b Issue #11235: Fix OverflowError when trying to import a source file whose modification time doesn't fit in a 32-bit timestamp. by Antoine Pitrou · 13 years ago
  4. 2be60af Issue #11235: Fix OverflowError when trying to import a source file whose modification time doesn't fit in a 32-bit timestamp. by Antoine Pitrou · 13 years ago
  5. 6d766fc Silence last compilation warning. by Amaury Forgeot d'Arc · 13 years ago
  6. cd27df3 Fix compilation warnings (seen on win32 buildbot) by Amaury Forgeot d'Arc · 13 years ago
  7. ce79852 use the static identifier api for looking up special methods by Benjamin Peterson · 13 years ago
  8. a4ac600 Issue #13706: Support non-ASCII fill characters by Victor Stinner · 13 years ago
  9. d25cfe6 Improve exception text. Closes issue 13811. by Eric V. Smith · 13 years ago
  10. fa21bf0 Issue #12705: Raise SyntaxError when compiling multiple statements as single interactive statement by Meador Inge · 13 years ago
  11. f0ecdd2 Issue #13722: Avoid silencing ImportErrors when initializing the codecs registry. by Antoine Pitrou · 13 years ago
  12. 1b468af Issue #13722: Avoid silencing ImportErrors when initializing the codecs registry. by Antoine Pitrou · 13 years ago
  13. aa5c5c6 Finally fix all test_capi refleaks by Antoine Pitrou · 13 years ago
  14. 165e01f Fix the builtin module initialization code to store the init function for future reinitialization. by Antoine Pitrou · 13 years ago
  15. 6c40eb7 Fix the builtin module initialization code to store the init function for future reinitialization. by Antoine Pitrou · 13 years ago
  16. fff47ab Fix a memory leak when initializing the standard I/O streams. by Antoine Pitrou · 13 years ago
  17. 2fabfac Fix a memory leak when initializing the standard I/O streams. by Antoine Pitrou · 13 years ago
  18. c64ae92 fix indentation by Benjamin Peterson · 13 years ago
  19. c8909dd break out switch at correct place by Benjamin Peterson · 13 years ago
  20. 205ad61 only finish error if one occurred by Benjamin Peterson · 13 years ago
  21. c0beabc move LINENO define to where it actually belongs by Benjamin Peterson · 13 years ago
  22. 55e0043 streamline normalizer identification a bit by Benjamin Peterson · 13 years ago
  23. d3af6e3 fix spelling by Benjamin Peterson · 13 years ago
  24. de5827d invert condition (head bang) by Benjamin Peterson · 13 years ago
  25. 0fa35ea fix possible refleaks by Benjamin Peterson · 13 years ago
  26. 89f8b80 use helpful PyUnicode_IS_ASCII macro by Benjamin Peterson · 13 years ago
  27. 5eda913 PyUnicode_DecodeUTF8 will always return a ready string by Benjamin Peterson · 13 years ago
  28. 8f56e09 rewrite such that this actually makes sense by Benjamin Peterson · 13 years ago
  29. da05f45 Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenNames indexes. by Meador Inge · 13 years ago
  30. 3388060 Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenNames indexes. by Meador Inge · 13 years ago
  31. 527c622 make YieldFrom its own distinct from Yield (closes #13780) by Benjamin Peterson · 13 years ago
  32. 0a239e9 Fix compilation with C89 compilers (Windows...) by Amaury Forgeot d'Arc · 13 years ago
  33. 0010256 fold into one if statement by Benjamin Peterson · 13 years ago
  34. a12d5c6 fix formatting by Benjamin Peterson · 13 years ago
  35. f606e68 add another year to glorious PSF IP by Benjamin Peterson · 13 years ago
  36. 0296a56 NULL and no exception set from tp_iternext means StopIteration by Benjamin Peterson · 13 years ago
  37. bc3b682 Closes #13761: add a "flush" keyword argument to print(). by Georg Brandl · 13 years ago
  38. 5136ac0 Issue #13645: pyc files now contain the size of the corresponding source by Antoine Pitrou · 13 years ago
  39. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  40. 3a5d4cb Issue #13748: Raw bytes literals can now be written with the `rb` prefix as well as `br`. by Antoine Pitrou · 13 years ago
  41. 0ab2a26 merge 3.2 by Benjamin Peterson · 13 years ago
  42. 21e0da2 remove some usage of Py_UNICODE_TOUPPER/LOWER by Benjamin Peterson · 13 years ago
  43. 3fe5531 Add a new PyUnicode_Fill() function by Victor Stinner · 13 years ago
  44. 332503d merge 3.2 by Benjamin Peterson · 13 years ago
  45. a174577 merge 3.2 by Benjamin Peterson · 13 years ago
  46. 0e576f1 Issue #13626: Add support for SSL Diffie-Hellman key exchange, through the by Antoine Pitrou · 13 years ago
  47. 2b1cc89 _Py_fopen now allows bytes filenames under non-Windows platforms. by Antoine Pitrou · 13 years ago
  48. 3573476 (Merge 3.2) Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 13 years ago
  49. bd0850b import.c now catchs _Py_stat() exceptions by Victor Stinner · 13 years ago
  50. 1b57967 Issue #13560: Locale codec functions use the classic "errors" parameter, by Victor Stinner · 13 years ago
  51. 1f33f2b Issue #13560: os.strerror() now uses the current locale encoding instead of UTF-8 by Victor Stinner · 13 years ago
  52. af02e1c Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() by Victor Stinner · 13 years ago
  53. aa6c1d2 Issue #13575: there is only one class type. by Florent Xicluna · 13 years ago
  54. 720682e Merge 3.2 by Florent Xicluna · 13 years ago
  55. 5126df6 Remove obsolete py3k comment. by Florent Xicluna · 13 years ago
  56. 1659b83 Followup to a541bda2f5e2: Add a short comment. by Charles-François Natali · 13 years ago
  57. 7c0b0cc Issue #11051: Reduce the number of syscalls per import. by Charles-François Natali · 13 years ago
  58. 47862d4 Issue #9530: Fix undefined behaviour due to signed overflow in Python/formatter_unicode.c. by Mark Dickinson · 13 years ago
  59. ee45009 PyCodec_IgnoreErrors() avoids the deprecated "u#" format by Victor Stinner · 13 years ago
  60. 39a73a4 Issue #7111: Python can now be run without a stdin, stdout or stderr stream. by Antoine Pitrou · 13 years ago
  61. 11942a5 Issue #7111: Python can now be run without a stdin, stdout or stderr stream. by Antoine Pitrou · 13 years ago
  62. 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
  63. 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
  64. 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
  65. 942d5ba Merge branch 3.2 by Amaury Forgeot d'Arc · 13 years ago
  66. 5e8f810 Issue #13436: commit regenerated Python-ast.c by Amaury Forgeot d'Arc · 13 years ago
  67. 23b0b92 Issue #13156: _PyGILState_Reinit(): Re-associate the auto thread state with the by Charles-François Natali · 13 years ago
  68. a233df8 Issue #13156: _PyGILState_Reinit(): Re-associate the auto thread state with the by Charles-François Natali · 13 years ago
  69. 63ab875 Remove "#ifdef Py_UNICODE_WIDE": Python is now always wide by Victor Stinner · 13 years ago
  70. 9d3b93b Use the new Unicode API by Victor Stinner · 13 years ago
  71. 9e30aa5 Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH() by Victor Stinner · 13 years ago
  72. 3335447 Check for PyUnicode_AS_UNICODE() failure by Victor Stinner · 13 years ago
  73. e251d6d print_exception() uses PyUnicode_GetLength() instead of PyUnicode_GetSize() by Victor Stinner · 13 years ago
  74. f34a0cd Issue #10227: Add an allocation cache for a single slice object. by Antoine Pitrou · 13 years ago
  75. ee587ea Catch PyUnicode_AS_UNICODE() errors in fileutils.c by Victor Stinner · 13 years ago
  76. 1f79517 Catch PyUnicode_AS_UNICODE() errors by Victor Stinner · 13 years ago
  77. 8ad982c Use PyUnicode_FromFormat() to create the temporary file name. by Antoine Pitrou · 13 years ago
  78. 1d8f3f4 Fix regression under Windows following b75b41237380 (from issue #13392) by Antoine Pitrou · 13 years ago
  79. 28e401e Issue #13392: Writing a pyc file should now be atomic under Windows as well. by Antoine Pitrou · 13 years ago
  80. 0c929d9 Issue #13303: Fix bytecode file default permission. by Charles-François Natali · 13 years ago
  81. d10759f Make _PyUnicode_FromId return borrowed references. by Martin v. Löwis · 13 years ago
  82. 50add04 quote the type name for improved readability by Philip Jenvey · 13 years ago
  83. 5ee9d8a Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode by Antoine Pitrou · 13 years ago
  84. 0d776b1 Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode by Antoine Pitrou · 13 years ago
  85. 9028a10 Issue #13343: Fix a SystemError when a lambda expression uses a global by Amaury Forgeot d'Arc · 13 years ago
  86. 97c1bef Issue #13343: Fix a SystemError when a lambda expression uses a global by Amaury Forgeot d'Arc · 13 years ago
  87. c06bb7a Avoid the Py_UNICODE type in codecs.c by Victor Stinner · 13 years ago
  88. b31f1bc PyCodec_XMLCharRefReplaceError(): Remove unused variable by Victor Stinner · 13 years ago
  89. 8ba7930 Fix C89 incompatibility. by Martin v. Löwis · 13 years ago
  90. b09af03 Port error handlers from Py_UNICODE indexing to code point indexing. by Martin v. Löwis · 13 years ago
  91. e640521 Merge follow-up for #11254 and other changes from 3.2 by Éric Araujo · 13 years ago
  92. 5df1108 Add signatures to the docstring of functions added to imp by PEP 3147 by Éric Araujo · 13 years ago
  93. 8db076c Issue #10363: Deallocate global locks in Py_Finalize(). by Antoine Pitrou · 13 years ago
  94. 4d46c2a Remove unused variable. by Florent Xicluna · 13 years ago
  95. de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
  96. e695eec Issue #13303: Fix a race condition in the bytecode file creation. by Charles-François Natali · 13 years ago
  97. f4afa43 Issue #13226: Update sys.setdlopenflags() docstring by Victor Stinner · 13 years ago
  98. f45dee9 Port import_module_level to Unicode API. by Martin v. Löwis · 13 years ago
  99. 6fbbc33 Issue #10363: Deallocate global locks in Py_Finalize(). by Antoine Pitrou · 13 years ago
  100. 796ea53 Port PyImport_ReloadModule to Unicode API. by Martin v. Löwis · 13 years ago