| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #10089: Add support for arbitrary -X options on the command-line. | Antoine Pitrou | 2010-10-21 | 2 | -6/+60 |
* | fix uninitialized struct member #10152 | Benjamin Peterson | 2010-10-20 | 1 | -0/+1 |
* | initfsencoding(): get_codeset() failure is now a fatal error | Victor Stinner | 2010-10-19 | 1 | -13/+6 |
* | make hashes always the size of pointers; introduce Py_hash_t #9778 | Benjamin Peterson | 2010-10-17 | 3 | -4/+4 |
* | compiler_error(): use PyUnicode_DecodeFSDefault() to decode the filename, | Victor Stinner | 2010-10-17 | 1 | -2/+11 |
* | PyErr_SyntaxLocationEx() uses PyUnicode_DecodeFSDefault(), instead of | Victor Stinner | 2010-10-17 | 1 | -1/+1 |
* | find_module(): use FS encoding to display the missing __init__ warning | Victor Stinner | 2010-10-17 | 1 | -7/+9 |
* | _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding | Victor Stinner | 2010-10-17 | 3 | -24/+62 |
* | Add an optional size argument to _Py_char2wchar() | Victor Stinner | 2010-10-16 | 1 | -11/+16 |
* | _Py_wrealpath() uses _Py_char2wchar() to decode the result, to support | Victor Stinner | 2010-10-16 | 1 | -2/+12 |
* | _Py_wreadlink(): catch _Py_char2wchar() failure | Victor Stinner | 2010-10-16 | 1 | -0/+4 |
* | _Py_wreadlink() uses _Py_char2wchar() to decode the result, to support | Victor Stinner | 2010-10-16 | 1 | -2/+7 |
* | Fix ast_error_finish() and err_input(): filename can be NULL | Victor Stinner | 2010-10-16 | 2 | -2/+12 |
* | Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects | Victor Stinner | 2010-10-16 | 5 | -26/+63 |
* | don't identify the toplevel namespace by name #9997 | Benjamin Peterson | 2010-10-16 | 1 | -1/+1 |
* | fix refleak | Benjamin Peterson | 2010-10-16 | 1 | -4/+6 |
* | First (uncontroversial) part of issue 9807. | Barry Warsaw | 2010-10-16 | 1 | -0/+4 |
* | Fix imp_cache_from_source(): Decode make_compiled_pathname() result from the | Victor Stinner | 2010-10-15 | 1 | -1/+1 |
* | imp_load_module() uses PyUnicode_FSConverter() to support surrogates in module | Victor Stinner | 2010-10-15 | 1 | -7/+7 |
* | imp.cache_from_source() uses PyUnicode_FSConverter() to support surrogates in | Victor Stinner | 2010-10-15 | 1 | -5/+8 |
* | imp.load_dynamic() uses PyUnicode_FSConverter() to support surrogates | Victor Stinner | 2010-10-15 | 1 | -6/+6 |
* | Use locale encoding if Py_FileSystemDefaultEncoding is not set | Victor Stinner | 2010-10-15 | 1 | -258/+0 |
* | redecode_filename(): don't need to initialize variables | Victor Stinner | 2010-10-15 | 1 | -1/+1 |
* | Mark _Py_char2wchar() input argument as constant | Victor Stinner | 2010-10-15 | 1 | -1/+1 |
* | Explicitly close some files (from issue #10093) | Antoine Pitrou | 2010-10-14 | 1 | -0/+6 |
* | _Py_wgetcwd() decodes the path using _Py_char2wchar() to support surrogates | Victor Stinner | 2010-10-14 | 1 | -3/+11 |
* | Issue #9992: Remove PYTHONFSENCODING environment variable. | Victor Stinner | 2010-10-13 | 1 | -16/+6 |
* | ceval.c: catch recursion error on _PyUnicode_AsString(co->co_filename) | Victor Stinner | 2010-10-13 | 1 | -0/+4 |
* | Issue #10062: Allow building on platforms which do not have sem_timedwait. | Antoine Pitrou | 2010-10-10 | 1 | -1/+2 |
* | fileutils.c: document which encodings are used | Victor Stinner | 2010-10-07 | 1 | -6/+26 |
* | _Py_wrealpath() requires the size of the output buffer | Victor Stinner | 2010-10-07 | 2 | -3/+4 |
* | _Py_stat() and _Py_fopen(): avoid PyUnicode_AsWideCharString() on Windows | Victor Stinner | 2010-10-07 | 1 | -18/+6 |
* | Fix fileutils for Windows | Victor Stinner | 2010-10-07 | 1 | -8/+7 |
* | Ooops, fileutils.c contains twice the same code | Victor Stinner | 2010-10-07 | 1 | -380/+0 |
* | Create fileutils.c/.h | Victor Stinner | 2010-10-07 | 3 | -93/+759 |
* | _wrealpath() and _Py_wreadlink() support surrogates (PEP 383) | Victor Stinner | 2010-10-07 | 1 | -3/+4 |
* | PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* | Victor Stinner | 2010-10-07 | 1 | -3/+3 |
* | Create a subfunction for PySys_SetArgvEx() | Victor Stinner | 2010-10-06 | 1 | -78/+94 |
* | #9060 Let platforms without dup2() compile the replacement fonction without e... | Amaury Forgeot d'Arc | 2010-10-05 | 1 | -0/+1 |
* | Remove an unreferenced variable. len is no longer needed. | Brian Curtin | 2010-09-29 | 1 | -1/+0 |
* | Issue #9630: Redecode filenames when setting the filesystem encoding | Victor Stinner | 2010-09-29 | 1 | -0/+258 |
* | Issue #9979: Use PyUnicode_AsWideCharString() in import.c | Victor Stinner | 2010-09-29 | 1 | -18/+16 |
* | Since __import__ is not designed for general use, have its docstring point | Brett Cannon | 2010-09-27 | 1 | -2/+6 |
* | revert r85003, poorly considered; breaks tests | Benjamin Peterson | 2010-09-25 | 1 | -1/+1 |
* | don't count keyword arguments as positional #9943 | Benjamin Peterson | 2010-09-25 | 1 | -1/+1 |
* | add column offset to all syntax errors | Benjamin Peterson | 2010-09-20 | 4 | -33/+56 |
* | add PyErr_SyntaxLocationEx, to support adding a column offset | Benjamin Peterson | 2010-09-20 | 1 | -1/+17 |
* | Issue #9901: Destroying the GIL in Py_Finalize() can fail if some other | Antoine Pitrou | 2010-09-20 | 1 | -5/+8 |
* | issue 9786 Native TLS support for pthreads | Kristján Valur Jónsson | 2010-09-20 | 3 | -1/+49 |
* | PyImport_Import was using the old import hack of sticking a dummy value into | Brett Cannon | 2010-09-19 | 1 | -3/+13 |