summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* | handle dict subclasses gracefully in PyArg_ValidateKeywordArgumentsBenjamin Peterson2010-11-171-1/+1
* | Issue #10372: Import the warnings module only after the IO library isAntoine Pitrou2010-11-101-7/+9
* | Issue #10359: Remove ";" after function definition, invalid in ISO CVictor Stinner2010-11-091-1/+1
* | _Py_char2wchar() frees the memory on conversion errorVictor Stinner2010-11-081-2/+7
* | PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() failsVictor Stinner2010-11-081-6/+14
* | Issue #10157: Fixed refleaks in pythonrun.c. Patch by Stefan Krah.Hirokazu Yamamoto2010-10-301-0/+3
* | decrement offset when it points to a newline (#10186 followup)Benjamin Peterson2010-10-291-1/+3
* | Issue #5437: A preallocated MemoryError instance should not hold tracebackAntoine Pitrou2010-10-281-23/+1
* | sys_update_path(): update sys.path even if argc==0Victor Stinner2010-10-251-2/+0
* | Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ...Georg Brandl2010-10-242-5/+23
* | tighten loopBenjamin Peterson2010-10-241-4/+1
* | remove broken code accounting an offset the size of the line #10186Benjamin Peterson2010-10-241-2/+0
* | follow up to #9778: define and use an unsigned hash typeBenjamin Peterson2010-10-231-1/+1
* | Issue #10089: Add support for arbitrary -X options on the command-line.Antoine Pitrou2010-10-212-6/+60
* | fix uninitialized struct member #10152Benjamin Peterson2010-10-201-0/+1
* | initfsencoding(): get_codeset() failure is now a fatal errorVictor Stinner2010-10-191-13/+6
* | make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-173-4/+4
* | compiler_error(): use PyUnicode_DecodeFSDefault() to decode the filename,Victor Stinner2010-10-171-2/+11
* | PyErr_SyntaxLocationEx() uses PyUnicode_DecodeFSDefault(), instead ofVictor Stinner2010-10-171-1/+1
* | find_module(): use FS encoding to display the missing __init__ warningVictor Stinner2010-10-171-7/+9
* | _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encodingVictor Stinner2010-10-173-24/+62
* | Add an optional size argument to _Py_char2wchar()Victor Stinner2010-10-161-11/+16
* | _Py_wrealpath() uses _Py_char2wchar() to decode the result, to supportVictor Stinner2010-10-161-2/+12
* | _Py_wreadlink(): catch _Py_char2wchar() failureVictor Stinner2010-10-161-0/+4
* | _Py_wreadlink() uses _Py_char2wchar() to decode the result, to supportVictor Stinner2010-10-161-2/+7
* | Fix ast_error_finish() and err_input(): filename can be NULLVictor Stinner2010-10-162-2/+12
* | Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expectsVictor Stinner2010-10-165-26/+63
* | don't identify the toplevel namespace by name #9997Benjamin Peterson2010-10-161-1/+1
* | fix refleakBenjamin Peterson2010-10-161-4/+6
* | First (uncontroversial) part of issue 9807.Barry Warsaw2010-10-161-0/+4
* | Fix imp_cache_from_source(): Decode make_compiled_pathname() result from theVictor Stinner2010-10-151-1/+1
* | imp_load_module() uses PyUnicode_FSConverter() to support surrogates in moduleVictor Stinner2010-10-151-7/+7
* | imp.cache_from_source() uses PyUnicode_FSConverter() to support surrogates inVictor Stinner2010-10-151-5/+8
* | imp.load_dynamic() uses PyUnicode_FSConverter() to support surrogatesVictor Stinner2010-10-151-6/+6
* | Use locale encoding if Py_FileSystemDefaultEncoding is not setVictor Stinner2010-10-151-258/+0
* | redecode_filename(): don't need to initialize variablesVictor Stinner2010-10-151-1/+1
* | Mark _Py_char2wchar() input argument as constantVictor Stinner2010-10-151-1/+1
* | Explicitly close some files (from issue #10093)Antoine Pitrou2010-10-141-0/+6
* | _Py_wgetcwd() decodes the path using _Py_char2wchar() to support surrogatesVictor Stinner2010-10-141-3/+11
* | Issue #9992: Remove PYTHONFSENCODING environment variable.Victor Stinner2010-10-131-16/+6
* | ceval.c: catch recursion error on _PyUnicode_AsString(co->co_filename)Victor Stinner2010-10-131-0/+4
* | Issue #10062: Allow building on platforms which do not have sem_timedwait.Antoine Pitrou2010-10-101-1/+2
* | fileutils.c: document which encodings are usedVictor Stinner2010-10-071-6/+26
* | _Py_wrealpath() requires the size of the output bufferVictor Stinner2010-10-072-3/+4
* | _Py_stat() and _Py_fopen(): avoid PyUnicode_AsWideCharString() on WindowsVictor Stinner2010-10-071-18/+6
* | Fix fileutils for WindowsVictor Stinner2010-10-071-8/+7
* | Ooops, fileutils.c contains twice the same codeVictor Stinner2010-10-071-380/+0
* | Create fileutils.c/.hVictor Stinner2010-10-073-93/+759
* | _wrealpath() and _Py_wreadlink() support surrogates (PEP 383)Victor Stinner2010-10-071-3/+4
* | PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*Victor Stinner2010-10-071-3/+3