3811 Commits (6dbca367dceda3999979bdc3cdcfdb201f40d044)

Author SHA1 Message Date
Philip Jenvey 50add04836 quote the type name for improved readability 14 years ago
Antoine Pitrou 0d776b1ce8 Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode 14 years ago
Amaury Forgeot d'Arc 97c1bef6a4 Issue #13343: Fix a SystemError when a lambda expression uses a global 14 years ago
Victor Stinner c06bb7affd Avoid the Py_UNICODE type in codecs.c 14 years ago
Victor Stinner b31f1bcd99 PyCodec_XMLCharRefReplaceError(): Remove unused variable 14 years ago
Martin v. Löwis 8ba79306d1 Fix C89 incompatibility. 14 years ago
Martin v. Löwis b09af03b8a Port error handlers from Py_UNICODE indexing to code point indexing. 14 years ago
Éric Araujo 5df1108de2 Add signatures to the docstring of functions added to imp by PEP 3147 14 years ago
Antoine Pitrou 8db076cf8a Issue #10363: Deallocate global locks in Py_Finalize(). 14 years ago
Florent Xicluna 4d46c2a722 Remove unused variable. 14 years ago
Nick Coghlan de31b191e5 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. 14 years ago
Charles-François Natali e695eec24a Issue #13303: Fix a race condition in the bytecode file creation. 14 years ago
Victor Stinner f4afa43fd4 Issue #13226: Update sys.setdlopenflags() docstring 14 years ago
Martin v. Löwis f45dee998f Port import_module_level to Unicode API. 14 years ago
Martin v. Löwis 796ea53937 Port PyImport_ReloadModule to Unicode API. 14 years ago
Antoine Pitrou b528fcf954 Fix test_imp failure under Windows 14 years ago
Martin v. Löwis 9af29d39af Rewrite find_module_path using unicode API. 14 years ago
Martin v. Löwis 2cc0cc54a2 Fix off-by-one error. 14 years ago
Martin v. Löwis fadcd317fa Drop unused macros. Use CACHEDIR consistently. 14 years ago
Martin v. Löwis 8a0ef78e8c Rewrite make_source_pathname using Unicode API. 14 years ago
Martin v. Löwis 30260a7fe3 Add ready checks for make_compiled_pathname. 14 years ago
Martin v. Löwis 2db72863fb Reformulate make_compiled_pathname in terms of unicode objects. 14 years ago
Victor Stinner 3a50e7056e Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore 14 years ago
Victor Stinner 9ea8e4c29d Instantiate the OS-related exception as soon as we raise it, so that "except" 14 years ago
Antoine Pitrou 707033a694 Issue #13146: Writing a pyc file is now atomic under POSIX. 14 years ago
Martin v. Löwis 1c67dd9b15 Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. 14 years ago
Martin v. Löwis bd928fef42 Rename _Py_identifier to _Py_IDENTIFIER. 14 years ago
Victor Stinner f5cff56a1b Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 15 years ago
Victor Stinner 9d663d0788 convertsimple(): "str without bytes" => "str without characters" 15 years ago
Antoine Pitrou 5d6fbe8207 Instantiate the OS-related exception as soon as we raise it, so that 15 years ago
Antoine Pitrou 6b4883dec0 PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. 15 years ago
Victor Stinner 8c9818980b Fix typo in import.c 15 years ago
Victor Stinner c4f281eba3 Fix misuse of PyUnicode_GET_SIZE, use PyUnicode_GET_LENGTH instead 15 years ago
Victor Stinner beac78bb24 Use PyUnicode_AsUnicodeAndSize() instead of PyUnicode_GET_SIZE() 15 years ago
Martin v. Löwis 1ee1b6fe0d Use identifier API for PyObject_GetAttrString. 15 years ago
Martin v. Löwis afe55bba33 Add API for static strings, primarily good for identifiers. 15 years ago
Martin v. Löwis c47adb04b3 Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. 15 years ago
Victor Stinner 46084bad88 Fix find_module_path(): make the string ready 15 years ago
Victor Stinner b62a7b268a Fix _warnings.c: make the filename string ready 15 years ago
Victor Stinner fb9ea8c57e Don't check for the maximum character when copying from unicodeobject.c 15 years ago
Victor Stinner a336de7ae1 traceback: fix dump_ascii() for string with kind=PyUnicode_WCHAR_KIND 15 years ago
Victor Stinner c3cec7868b Add asciilib: similar to ucs1, ucs2 and ucs4 library, but specialized to ASCII 15 years ago
Victor Stinner e1335c711c Fix usage og PyUnicode_READY() 15 years ago
Victor Stinner d2a915dbf6 ceval.c: restore str+=str optimization 15 years ago
Victor Stinner 67002af323 Check error when calling PyUnicode_AppendAndDel() 15 years ago
Victor Stinner 1a15aba71d PyCodec_ReplaceErrors() uses "C" format instead of "u#" to build result 15 years ago
Benjamin Peterson 014cc42db8 remove unused label 15 years ago
Martin v. Löwis 0b1d348990 Issue 13085: Fix some memory leaks. Patch by Stefan Krah. 15 years ago
Benjamin Peterson 811c2f1369 remove "fast-path" for (i)adding strings 15 years ago
Victor Stinner bec0fda264 Remove commented code: str+=str is no more super-optimized 15 years ago