1. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  2. c049982 compiler_error(): use PyUnicode_DecodeFSDefault() to decode the filename, by Victor Stinner · 14 years ago
  3. 15a71cd PyErr_SyntaxLocationEx() uses PyUnicode_DecodeFSDefault(), instead of by Victor Stinner · 14 years ago
  4. ed7916d find_module(): use FS encoding to display the missing __init__ warning by Victor Stinner · 14 years ago
  5. 49d3f25 _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding by Victor Stinner · 14 years ago
  6. 168e117 Add an optional size argument to _Py_char2wchar() by Victor Stinner · 14 years ago
  7. 0a1b8cb _Py_wrealpath() uses _Py_char2wchar() to decode the result, to support by Victor Stinner · 14 years ago
  8. 350147b _Py_wreadlink(): catch _Py_char2wchar() failure by Victor Stinner · 14 years ago
  9. 3f711f4 _Py_wreadlink() uses _Py_char2wchar() to decode the result, to support by Victor Stinner · 14 years ago
  10. 2f2ed1f Fix ast_error_finish() and err_input(): filename can be NULL by Victor Stinner · 14 years ago
  11. 4c7c8c3 Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects by Victor Stinner · 14 years ago
  12. 230b206 don't identify the toplevel namespace by name #9997 by Benjamin Peterson · 14 years ago
  13. 294a9fc fix refleak by Benjamin Peterson · 14 years ago
  14. 8cf4eae First (uncontroversial) part of issue 9807. by Barry Warsaw · 14 years ago
  15. 88bd891 Fix imp_cache_from_source(): Decode make_compiled_pathname() result from the by Victor Stinner · 14 years ago
  16. 1a56303 imp_load_module() uses PyUnicode_FSConverter() to support surrogates in module by Victor Stinner · 14 years ago
  17. 3ea23dd imp.cache_from_source() uses PyUnicode_FSConverter() to support surrogates in by Victor Stinner · 14 years ago
  18. 8dbf629 imp.load_dynamic() uses PyUnicode_FSConverter() to support surrogates by Victor Stinner · 14 years ago
  19. f3170cc Use locale encoding if Py_FileSystemDefaultEncoding is not set by Victor Stinner · 14 years ago
  20. 6a4aff1 redecode_filename(): don't need to initialize variables by Victor Stinner · 14 years ago
  21. 5d1e3438 Mark _Py_char2wchar() input argument as constant by Victor Stinner · 14 years ago
  22. b86680e Explicitly close some files (from issue #10093) by Antoine Pitrou · 14 years ago
  23. f4061da _Py_wgetcwd() decodes the path using _Py_char2wchar() to support surrogates by Victor Stinner · 14 years ago
  24. 8f6b6b0 Issue #9992: Remove PYTHONFSENCODING environment variable. by Victor Stinner · 14 years ago
  25. a000645 ceval.c: catch recursion error on _PyUnicode_AsString(co->co_filename) by Victor Stinner · 14 years ago
  26. 19f8edc Issue #10062: Allow building on platforms which do not have sem_timedwait. by Antoine Pitrou · 14 years ago
  27. 6672d0c fileutils.c: document which encodings are used by Victor Stinner · 14 years ago
  28. 015f4d8 _Py_wrealpath() requires the size of the output buffer by Victor Stinner · 14 years ago
  29. a4a7595 _Py_stat() and _Py_fopen(): avoid PyUnicode_AsWideCharString() on Windows by Victor Stinner · 14 years ago
  30. b306d75 Fix fileutils for Windows by Victor Stinner · 14 years ago
  31. e7c8083 Ooops, fileutils.c contains twice the same code by Victor Stinner · 14 years ago
  32. 4e31443 Create fileutils.c/.h by Victor Stinner · 14 years ago
  33. 7ae7c87 _wrealpath() and _Py_wreadlink() support surrogates (PEP 383) by Victor Stinner · 14 years ago
  34. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  35. c08ec9f Create a subfunction for PySys_SetArgvEx() by Victor Stinner · 14 years ago
  36. 90774dd #9060 Let platforms without dup2() compile the replacement fonction without error. by Amaury Forgeot d'Arc · 14 years ago
  37. 748cace Remove an unreferenced variable. len is no longer needed. by Brian Curtin · 14 years ago
  38. c39211f Issue #9630: Redecode filenames when setting the filesystem encoding by Victor Stinner · 14 years ago
  39. 255dfdb Issue #9979: Use PyUnicode_AsWideCharString() in import.c by Victor Stinner · 14 years ago
  40. 5305a99 Since __import__ is not designed for general use, have its docstring point by Brett Cannon · 14 years ago
  41. aa7fbd9 revert r85003, poorly considered; breaks tests by Benjamin Peterson · 14 years ago
  42. 81437c9 don't count keyword arguments as positional #9943 by Benjamin Peterson · 14 years ago
  43. d4efd9e add column offset to all syntax errors by Benjamin Peterson · 14 years ago
  44. 2c53971 add PyErr_SyntaxLocationEx, to support adding a column offset by Benjamin Peterson · 14 years ago
  45. b0b384b Issue #9901: Destroying the GIL in Py_Finalize() can fail if some other by Antoine Pitrou · 14 years ago
  46. 2fea9b9 issue 9786 Native TLS support for pthreads by Kristján Valur Jónsson · 14 years ago
  47. bc2eff3 PyImport_Import was using the old import hack of sticking a dummy value into by Brett Cannon · 14 years ago
  48. 1df1536 Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properly by Antoine Pitrou · 14 years ago
  49. cd419ab Fix incorrect comment regarding MAGIC and TAG in import.c by Nick Coghlan · 14 years ago
  50. e208b7c typo by Benjamin Peterson · 14 years ago
  51. d0de25d use Py_REFCNT by Benjamin Peterson · 14 years ago
  52. d2be5b4 remove gil_drop_request in --without-threads by Benjamin Peterson · 14 years ago
  53. 00ebe2c use DISPATCH() instead of continue by Benjamin Peterson · 14 years ago
  54. 5b519e0 Issue #9632: Remove sys.setfilesystemencoding() function: use PYTHONFSENCODING by Victor Stinner · 14 years ago
  55. 6246d6d bump magic number for DELETE_DEREF by Benjamin Peterson · 14 years ago
  56. ba117ef #4617: Previously it was illegal to delete a name from the local by Amaury Forgeot d'Arc · 14 years ago
  57. c793779 Fix Issue #9752: MSVC compiler warning due to undefined function by Daniel Stutzbach · 14 years ago
  58. e4a1892 Issue #9804: ascii() now always represents unicode surrogate pairs as by Antoine Pitrou · 14 years ago
  59. f69af1e PEP 3149: Try to load the extension with the SOABI before trying by Matthias Klose · 14 years ago
  60. 079ce54 Issue #9797: pystate.c wrongly assumed that zero couldn't be a valid by Antoine Pitrou · 14 years ago
  61. 74a69fa Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replaced by Antoine Pitrou · 14 years ago
  62. ef0e6c3 _warnings exposed two variables with the name 'default_action' and by Brett Cannon · 14 years ago
  63. 35f3a2c PEP 3149 is accepted. by Barry Warsaw · 14 years ago
  64. fce7fd6 Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding() by Antoine Pitrou · 14 years ago
  65. 1768999 only catch AttributeError in hasattr() #9666 by Benjamin Peterson · 14 years ago
  66. 819a064 Issue 8403: Don't mask KeyboardInterrupt during peephole operation. by Raymond Hettinger · 14 years ago
  67. 12844e6 Add tests for r84209 (crashes in the Ast builder) by Amaury Forgeot d'Arc · 14 years ago
  68. 92dc80a Check the return values for all functions returning an ast node. by Amaury Forgeot d'Arc · 14 years ago
  69. 94908bb Issue #8622: Add PYTHONFSENCODING environment variable to override the by Victor Stinner · 14 years ago
  70. 6b06da5 Remove unused functions _PyImport_FindModule and _PyImport_IsScript by Victor Stinner · 14 years ago
  71. 6961bd6 Issue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx(). by Victor Stinner · 14 years ago
  72. d26c18a Issue #8202: Set sys.argv[0] to -m rather than -c while searching for the module to execute. Also updates all the cmd_line_script tests to validate the setting of sys.path[0] and the current working directory by Nick Coghlan · 14 years ago
  73. 4a3733d Issue #9425: save/restore exception on filename encoding by Victor Stinner · 14 years ago
  74. 7976663 Issue #9599: Create PySys_FormatStdout() and PySys_FormatStderr() by Victor Stinner · 14 years ago
  75. f52b705 Create _Py_fopen() for PyUnicodeObject path by Victor Stinner · 14 years ago
  76. 8a79dcc _Py_stat(): ensure that path ends with a nul character by Victor Stinner · 14 years ago
  77. 4f4402c Issue #9425: Create private _Py_stat() function by Victor Stinner · 14 years ago
  78. 042b128 Issue #9203: Computed gotos are now enabled by default on supported by Antoine Pitrou · 14 years ago
  79. 4a2b7a1 Issue #9425: Create PyErr_WarnFormat() function by Victor Stinner · 14 years ago
  80. 1a4d12d Issue #9425: NullImporter constructor is fully unicode compliant by Victor Stinner · 14 years ago
  81. f0f4514 Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 by Alexander Belopolsky · 14 years ago
  82. e1dd174 Issue #8411: new condition variable emulation under Windows for the new GIL, by Antoine Pitrou · 14 years ago
  83. 44c6c15 Issue #9425: Create load_builtin() subfunction by Victor Stinner · 14 years ago
  84. 696e035 Issue #477863: Print a warning at shutdown if gc.garbage is not empty. by Antoine Pitrou · 14 years ago
  85. 2e5f117 Issue #9425: fix setup_context() for non-ascii filenames by Victor Stinner · 14 years ago
  86. bddc9fe Issue #5319: Print an error if flushing stdout fails at interpreter shutdown. by Antoine Pitrou · 14 years ago
  87. 6fc4ade Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API by Alexander Belopolsky · 14 years ago
  88. e87c0e1 Remove trailing whitespace. by Georg Brandl · 14 years ago
  89. fff9021 Update copyright years and add releases to release list. Also update Sphinx version number. by Georg Brandl · 14 years ago
  90. 8182b71 Issue #8991: convertbuffer() rejects discontigious buffers by Victor Stinner · 14 years ago
  91. 20f9c3c revert unintended changes by Benjamin Peterson · 14 years ago
  92. 013783c move test_trace.py so as not to conflict with future tests for the trace module by Benjamin Peterson · 14 years ago
  93. 0bddfd0 Regenerate Python/graminit.c. by Mark Dickinson · 14 years ago
  94. 0310a83 #3071: tell how many values were expected when unpacking too many. by Georg Brandl · 14 years ago
  95. d885e95 - sysmodule.c (get_hash_info): Define as static function. by Matthias Klose · 14 years ago
  96. 7ab4b8d Merged revisions 77402,77505,77510 via svnmerge from by Benjamin Peterson · 14 years ago
  97. 556d800 Merged revisions 81380 via svnmerge from by Benjamin Peterson · 14 years ago
  98. 3e5cd1d Merged revisions 81465-81466,81468,81679,81735,81760,81868,82183 via svnmerge from by Benjamin Peterson · 14 years ago
  99. 88968ad only take into account positional arguments count in related error messages by Benjamin Peterson · 14 years ago
  100. 25e8ec4 Issue #8850: Remove "w" and "w#" formats from PyArg_Parse*() functions, use by Victor Stinner · 14 years ago