3570 Commits (261ccdce4825535d4f6ea4bf09e9394bb751df20)

Author SHA1 Message Date
Victor Stinner fe7c5b5bdf Issue #9319: Include the filename in "Non-UTF8 code ..." syntax error. 15 years ago
Victor Stinner 7f2fee3640 Issue #10785: Store the filename as Unicode in the Python parser. 15 years ago
Victor Stinner 2d3222740b Issue #11619: _PyImport_LoadDynamicModule() doesn't encode the path to bytes 15 years ago
Victor Stinner fcb88c4503 Issue #11393: _Py_DumpTraceback() writes the header even if there is no frame 15 years ago
Victor Stinner d727e23243 Issue #11393: The fault handler handles also SIGABRT 15 years ago
Victor Stinner 27181ac778 sys.getfilesystemencoding() raises a RuntimeError if initfsencoding() was not 15 years ago
Victor Stinner 024e37adcc Issue #11393: Add the new faulthandler module 15 years ago
Antoine Pitrou 7899acfc23 Issue #11618: Fix the timeout logic in threading.Lock.acquire() under 15 years ago
Éric Araujo be3bd57ba2 Remove traces of division_warning left over from Python 2 (#10998) 15 years ago
Brett Cannon 442c9b92d8 Make importlib compatible with __import__ by "fixing" code.co_filename 15 years ago
Mark Dickinson 7c9e803284 Issue #11244: Remove outdated peepholer check that was preventing the peepholer from folding -0 and -0.0. Thanks Eugene Toder for the patch. 15 years ago
Victor Stinner e9ddbf65a8 Issue #11630, issue #3080: Fix refleak introduced by ef2b6305d395 15 years ago
Victor Stinner 9c61e24be4 Issue #3080: On DJGPP, case_bytes() returns -1 to signal an error if the file 15 years ago
Victor Stinner 0a5f65ab0a Issue #7330, #10833: Replace %100s by %.100s and %200s by %.200s 15 years ago
Victor Stinner 6ced7c4333 Issue #10833: Use PyErr_Format() and PyUnicode_FromFormat() instead of 15 years ago
Victor Stinner 451385d8f8 Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file 15 years ago
Victor Stinner 9c4efe571d Fix #11586: typo in initfsencoding() 15 years ago
Victor Stinner 4ca2809b5c Fix #11586: typo in initfsencoding() 15 years ago
Victor Stinner 6ae1e7f04e Issue #3080: imp.load_module() accepts None for the module path 15 years ago
Victor Stinner cc9564ecd8 Issue #3080: Fix call to case_ok() in find_init_module() 15 years ago
Victor Stinner 1304f2d8a3 Issue #3080: Fix case_ok() using case_bytes() 15 years ago
Ezio Melotti 13925008dc #11565: Fix several typos. Patch by Piotr Kasprzyk. 15 years ago
Raymond Hettinger 29dcaad6eb Issue 11510: Fix BUILD_SET optimizer bug. 15 years ago
Ezio Melotti 42da663e6f #11515: fix several typos. Patch by Piotr Kasprzyk. 15 years ago
Victor Stinner fe93faf98c Issue #3080: Add PyImport_ImportModuleLevelObject() function 15 years ago
Victor Stinner 98dbba5d20 Issue #3080: Use repr() to format the module name on error 15 years ago
Victor Stinner ccbf475dfd Fix imp.cache_from_source() if the directory name contains a dot 15 years ago
Victor Stinner fe19d21815 Issue #3080: imp.new_module() uses Unicode 15 years ago
Victor Stinner 2fd76e478f Issue #3080: find_module() returns the path as Unicode 15 years ago
Victor Stinner c9a271cf2b Issue #3080: case_ok() expects Unicode strings 15 years ago
Victor Stinner 547a2a6d52 Issue #3080: find_init_module() expects Unicode 15 years ago
Victor Stinner d029621c70 Issue #3080: Refactor find_module_path(), use return instead of break 15 years ago
Victor Stinner df75a023a0 Issue #3080: find_module() sets an empty path for builtin and frozen modules 15 years ago
Victor Stinner 533d78399f Issue #3080: Rename some path variables to path_list 15 years ago
Victor Stinner ad3c03b23e Issue #3080: find_module() expects module fullname and subname as Unicode 15 years ago
Victor Stinner 58d37112ae Issue #3080: Drop OS/2 support for the import machinery 15 years ago
Victor Stinner 9599de5110 Issue #3080: Reindent and simplify import_submodule() 15 years ago
Victor Stinner c24c8108b6 Issue #3080: Use %R to format module name in error messages 15 years ago
Victor Stinner 974389d92c Issue #3080: Use Unicode for the "The Magnum Opus of dotted-name import" 15 years ago
Victor Stinner 2e5f11aaa4 Issue #3080: PyImport_ImportModuleNoBlock() uses Unicode 15 years ago
Victor Stinner 41c5fecce0 Issue #3080: load_module() expects name and path as Unicode 15 years ago
Victor Stinner 2f42ae53aa Issue #3080: Use Unicode to import source and compiled modules 15 years ago
Victor Stinner c9abda0c04 Issue #3080: get_sourcefile(), make_source_pathname(), load_package() 15 years ago
Victor Stinner d68c2cf237 Issue #3080: Create find_module_path() subfunction 15 years ago
Victor Stinner 3758028299 Issue #3080: Create find_module_path_list() subfunction 15 years ago
Victor Stinner c696316466 Issue #3080: Remove useless name buffer from find_module() 15 years ago
Victor Stinner 7d8b77c2aa Issue #3080: find_module() initialize buf and *p_fp 15 years ago
Victor Stinner fefd70c40d Issue #3080: _PyImport_LoadDynamicModule() uses Unicode for name and path 15 years ago
Victor Stinner 4d6c1c476a Issue #3080: _PyWin_FindRegisteredModule() returns the path as Unicode 15 years ago
Victor Stinner 21fcd0c9af Issue #3080: Use PyUnicode_InternFromString() for builtins 15 years ago