1. 13d49ee Issue #10601: sys.displayhook uses 'backslashreplace' error handler on by Victor Stinner · 14 years ago
  2. 8334fd9 Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile. by Georg Brandl · 14 years ago
  3. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  4. ebc0052 import: use PyUnicode_FSConverter to support bytes path and PEP 383 by Victor Stinner · 14 years ago
  5. b2ddf79 Issue #9573: os.fork now works when triggered as a side effect of import (the wisdom of actually relying on this remains questionable!) by Nick Coghlan · 14 years ago
  6. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  7. 71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. by Georg Brandl · 14 years ago
  8. e71362d Issue #10518: Bring back the callable() builtin. by Antoine Pitrou · 14 years ago
  9. 0a4dae5 fix refleak by Benjamin Peterson · 14 years ago
  10. 5a96b52 Issue #10255: Fix reference leak in Py_InitializeEx(). Patch by Neil by Antoine Pitrou · 14 years ago
  11. d8f6597 new plan: functions that want 'tmp' can declare it by Benjamin Peterson · 14 years ago
  12. 0e9e98e c89 declarations by Benjamin Peterson · 14 years ago
  13. 5b06681 use %R format code; fixes invalid dereferencing #10391 by Benjamin Peterson · 14 years ago
  14. f609654 handle dict subclasses gracefully in PyArg_ValidateKeywordArguments by Benjamin Peterson · 14 years ago
  15. cf9f980 Issue #10372: Import the warnings module only after the IO library is by Antoine Pitrou · 14 years ago
  16. 3e2b717 Issue #10359: Remove ";" after function definition, invalid in ISO C by Victor Stinner · 14 years ago
  17. 19de4c3 _Py_char2wchar() frees the memory on conversion error by Victor Stinner · 14 years ago
  18. 2f02a51 PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails by Victor Stinner · 14 years ago
  19. daf83ac Issue #10157: Fixed refleaks in pythonrun.c. Patch by Stefan Krah. by Hirokazu Yamamoto · 14 years ago
  20. a95e977 decrement offset when it points to a newline (#10186 followup) by Benjamin Peterson · 14 years ago
  21. 07e20ef Issue #5437: A preallocated MemoryError instance should not hold traceback by Antoine Pitrou · 14 years ago
  22. 07e4f15 sys_update_path(): update sys.path even if argc==0 by Victor Stinner · 14 years ago
  23. 08be72d Add a new warning gategory, ResourceWarning, as discussed on python-dev. It is silent by default, by Georg Brandl · 14 years ago
  24. d4519c1 tighten loop by Benjamin Peterson · 14 years ago
  25. 503d6c5 remove broken code accounting an offset the size of the line #10186 by Benjamin Peterson · 14 years ago
  26. 8035bc5 follow up to #9778: define and use an unsigned hash type by Benjamin Peterson · 14 years ago
  27. 9583cac Issue #10089: Add support for arbitrary -X options on the command-line. by Antoine Pitrou · 14 years ago
  28. b8ffb60 fix uninitialized struct member #10152 by Benjamin Peterson · 14 years ago
  29. e474309 initfsencoding(): get_codeset() failure is now a fatal error by Victor Stinner · 14 years ago
  30. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  31. c049982 compiler_error(): use PyUnicode_DecodeFSDefault() to decode the filename, by Victor Stinner · 14 years ago
  32. 15a71cd PyErr_SyntaxLocationEx() uses PyUnicode_DecodeFSDefault(), instead of by Victor Stinner · 14 years ago
  33. ed7916d find_module(): use FS encoding to display the missing __init__ warning by Victor Stinner · 14 years ago
  34. 49d3f25 _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding by Victor Stinner · 14 years ago
  35. 168e117 Add an optional size argument to _Py_char2wchar() by Victor Stinner · 14 years ago
  36. 0a1b8cb _Py_wrealpath() uses _Py_char2wchar() to decode the result, to support by Victor Stinner · 14 years ago
  37. 350147b _Py_wreadlink(): catch _Py_char2wchar() failure by Victor Stinner · 14 years ago
  38. 3f711f4 _Py_wreadlink() uses _Py_char2wchar() to decode the result, to support by Victor Stinner · 14 years ago
  39. 2f2ed1f Fix ast_error_finish() and err_input(): filename can be NULL by Victor Stinner · 14 years ago
  40. 4c7c8c3 Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects by Victor Stinner · 14 years ago
  41. 230b206 don't identify the toplevel namespace by name #9997 by Benjamin Peterson · 14 years ago
  42. 294a9fc fix refleak by Benjamin Peterson · 14 years ago
  43. 8cf4eae First (uncontroversial) part of issue 9807. by Barry Warsaw · 14 years ago
  44. 88bd891 Fix imp_cache_from_source(): Decode make_compiled_pathname() result from the by Victor Stinner · 14 years ago
  45. 1a56303 imp_load_module() uses PyUnicode_FSConverter() to support surrogates in module by Victor Stinner · 14 years ago
  46. 3ea23dd imp.cache_from_source() uses PyUnicode_FSConverter() to support surrogates in by Victor Stinner · 14 years ago
  47. 8dbf629 imp.load_dynamic() uses PyUnicode_FSConverter() to support surrogates by Victor Stinner · 14 years ago
  48. f3170cc Use locale encoding if Py_FileSystemDefaultEncoding is not set by Victor Stinner · 14 years ago
  49. 6a4aff1 redecode_filename(): don't need to initialize variables by Victor Stinner · 14 years ago
  50. 5d1e3438 Mark _Py_char2wchar() input argument as constant by Victor Stinner · 14 years ago
  51. b86680e Explicitly close some files (from issue #10093) by Antoine Pitrou · 14 years ago
  52. f4061da _Py_wgetcwd() decodes the path using _Py_char2wchar() to support surrogates by Victor Stinner · 14 years ago
  53. 8f6b6b0 Issue #9992: Remove PYTHONFSENCODING environment variable. by Victor Stinner · 14 years ago
  54. a000645 ceval.c: catch recursion error on _PyUnicode_AsString(co->co_filename) by Victor Stinner · 14 years ago
  55. 19f8edc Issue #10062: Allow building on platforms which do not have sem_timedwait. by Antoine Pitrou · 14 years ago
  56. 6672d0c fileutils.c: document which encodings are used by Victor Stinner · 14 years ago
  57. 015f4d8 _Py_wrealpath() requires the size of the output buffer by Victor Stinner · 14 years ago
  58. a4a7595 _Py_stat() and _Py_fopen(): avoid PyUnicode_AsWideCharString() on Windows by Victor Stinner · 14 years ago
  59. b306d75 Fix fileutils for Windows by Victor Stinner · 14 years ago
  60. e7c8083 Ooops, fileutils.c contains twice the same code by Victor Stinner · 14 years ago
  61. 4e31443 Create fileutils.c/.h by Victor Stinner · 14 years ago
  62. 7ae7c87 _wrealpath() and _Py_wreadlink() support surrogates (PEP 383) by Victor Stinner · 14 years ago
  63. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  64. c08ec9f Create a subfunction for PySys_SetArgvEx() by Victor Stinner · 14 years ago
  65. 90774dd #9060 Let platforms without dup2() compile the replacement fonction without error. by Amaury Forgeot d'Arc · 14 years ago
  66. 748cace Remove an unreferenced variable. len is no longer needed. by Brian Curtin · 14 years ago
  67. c39211f Issue #9630: Redecode filenames when setting the filesystem encoding by Victor Stinner · 14 years ago
  68. 255dfdb Issue #9979: Use PyUnicode_AsWideCharString() in import.c by Victor Stinner · 14 years ago
  69. 5305a99 Since __import__ is not designed for general use, have its docstring point by Brett Cannon · 14 years ago
  70. aa7fbd9 revert r85003, poorly considered; breaks tests by Benjamin Peterson · 14 years ago
  71. 81437c9 don't count keyword arguments as positional #9943 by Benjamin Peterson · 14 years ago
  72. d4efd9e add column offset to all syntax errors by Benjamin Peterson · 14 years ago
  73. 2c53971 add PyErr_SyntaxLocationEx, to support adding a column offset by Benjamin Peterson · 14 years ago
  74. b0b384b Issue #9901: Destroying the GIL in Py_Finalize() can fail if some other by Antoine Pitrou · 14 years ago
  75. 2fea9b9 issue 9786 Native TLS support for pthreads by Kristján Valur Jónsson · 14 years ago
  76. bc2eff3 PyImport_Import was using the old import hack of sticking a dummy value into by Brett Cannon · 14 years ago
  77. 1df1536 Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properly by Antoine Pitrou · 14 years ago
  78. cd419ab Fix incorrect comment regarding MAGIC and TAG in import.c by Nick Coghlan · 14 years ago
  79. e208b7c typo by Benjamin Peterson · 14 years ago
  80. d0de25d use Py_REFCNT by Benjamin Peterson · 14 years ago
  81. d2be5b4 remove gil_drop_request in --without-threads by Benjamin Peterson · 14 years ago
  82. 00ebe2c use DISPATCH() instead of continue by Benjamin Peterson · 14 years ago
  83. 5b519e0 Issue #9632: Remove sys.setfilesystemencoding() function: use PYTHONFSENCODING by Victor Stinner · 14 years ago
  84. 6246d6d bump magic number for DELETE_DEREF by Benjamin Peterson · 14 years ago
  85. ba117ef #4617: Previously it was illegal to delete a name from the local by Amaury Forgeot d'Arc · 14 years ago
  86. c793779 Fix Issue #9752: MSVC compiler warning due to undefined function by Daniel Stutzbach · 14 years ago
  87. e4a1892 Issue #9804: ascii() now always represents unicode surrogate pairs as by Antoine Pitrou · 14 years ago
  88. f69af1e PEP 3149: Try to load the extension with the SOABI before trying by Matthias Klose · 14 years ago
  89. 079ce54 Issue #9797: pystate.c wrongly assumed that zero couldn't be a valid by Antoine Pitrou · 14 years ago
  90. 74a69fa Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replaced by Antoine Pitrou · 14 years ago
  91. ef0e6c3 _warnings exposed two variables with the name 'default_action' and by Brett Cannon · 14 years ago
  92. 35f3a2c PEP 3149 is accepted. by Barry Warsaw · 14 years ago
  93. fce7fd6 Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding() by Antoine Pitrou · 14 years ago
  94. 1768999 only catch AttributeError in hasattr() #9666 by Benjamin Peterson · 14 years ago
  95. 819a064 Issue 8403: Don't mask KeyboardInterrupt during peephole operation. by Raymond Hettinger · 14 years ago
  96. 12844e6 Add tests for r84209 (crashes in the Ast builder) by Amaury Forgeot d'Arc · 14 years ago
  97. 92dc80a Check the return values for all functions returning an ast node. by Amaury Forgeot d'Arc · 14 years ago
  98. 94908bb Issue #8622: Add PYTHONFSENCODING environment variable to override the by Victor Stinner · 14 years ago
  99. 6b06da5 Remove unused functions _PyImport_FindModule and _PyImport_IsScript by Victor Stinner · 14 years ago
  100. 6961bd6 Issue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx(). by Victor Stinner · 14 years ago