4208 Commits (50ae3f680b43eda435daba083a1e4b41eecc4e58)

Author SHA1 Message Date
Serhiy Storchaka dfde2151ed Fix reference leaks introduced by the patch for issue #5308. 13 years ago
Christian Heimes 7ce57d67c9 Issue #18426: improve exception message. Courtesy of Amaury 13 years ago
Christian Heimes 848ee099f5 Issue #18426: Fix NULL pointer dereference in C extension import when 13 years ago
R David Murray 87ead1138d #18424: PEP8ify the tense of the sum docstring. 13 years ago
Victor Stinner aaa8ed8b84 Issue #18408: Fix call_exc_trace(): if the traceback is NULL, use None when 13 years ago
Victor Stinner e0af3a802a Issue #18408: Fix PyCode_Optimize(): raise a MemoryError on memory allocation 13 years ago
Victor Stinner 0ff0f54dd4 Issue #18408: Fix call_function() of ceval.c to handle PyTuple_New() failure 13 years ago
Victor Stinner 3a8b79d4d2 Issue #18408: Fix marshal reader for Unicode strings: handle 13 years ago
Victor Stinner 49fc8ece81 Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup() 13 years ago
Victor Stinner c6632e7eb4 Issue #18203: Replace malloc() with PyMem_Malloc() to allocate arena objects 13 years ago
Victor Stinner 80aa565fb4 Issue #18203: Replace malloc() with PyMem_RawMalloc() to allocate thread locks 13 years ago
Victor Stinner 65bf9cf26f Issue #18203: Fix decode_ascii_surrogateescape(), use PyMem_RawMalloc() as _Py_char2wchar() 13 years ago
Victor Stinner 1a7425f67a Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initialization 13 years ago
Victor Stinner 51fa458d0a Issue #18203: Fix Py_Finalize(): destroy the GIL after the last call to 13 years ago
Brett Cannon a53cca3fea Issue #18351: Fix various issues with 13 years ago
Brett Cannon 0075110ab2 Issue #18364: Stop using the ImportError._not_found hack. 13 years ago
Brett Cannon 679ecb565b Issue #15767: back out 8a0ed9f63c6e, finishing the removal of 13 years ago
Brett Cannon 82da8886cc Issue #15767: Revert 3a50025f1900 for ModuleNotFoundError 13 years ago
Christian Heimes b9dbc7d6e1 Issue #18328: Reorder ops in PyThreadState_Delete*() functions. Now the 13 years ago
Raymond Hettinger 4d6018fe45 Issue 18111: Add a default argument to min() and max() 13 years ago
Victor Stinner 14b9b11098 If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified. 13 years ago
Victor Stinner 7b2513589f Issue #9566: pystrtod.c: Fix a compiler warnings on Windows x64 13 years ago
Victor Stinner 76d38502e4 Issue #9566: Fix a compiler warning on Windows x64 13 years ago
Christian Heimes 582cfbbf74 import.c does neither need mode_t nor _mkdir() anymore 13 years ago
Victor Stinner 2f084ecfe7 Issue #18137: Detect integer overflow on precision in float.__format__() and 13 years ago
Victor Stinner f1913ca37f marshal: optimize parsing of empty Unicode strings 13 years ago
Andrew Kuchling c61b913078 #13226: update references from ctypes/DLFCN modules to os module 13 years ago
Antoine Pitrou 9a00e0a41c Issue #18256: Compilation fix for recent AIX releases. Patch by David Edelsohn. 13 years ago
Brett Cannon 1d75382e81 Fix a misnaming of a method and an argument 13 years ago
Brett Cannon f24fecd4ac Issue #18076: Introduce imoportlib.util.decode_source(). 13 years ago
Brett Cannon f4375ef4d4 importlib.abc.SourceLoader.get_source() was re-raising SyntaxError and 13 years ago
Brett Cannon 01b0475b08 Issue #18115: Abstract out managing the cleanup of modules to use in 13 years ago
Brett Cannon 13d8ff9c5b Issues #18058, 18057: Make importlib._bootstrap.NamespaceLoader 13 years ago
Brett Cannon a3c96154d2 Issue #17907: touch up the code for imp.new_module(). 13 years ago
Brett Cannon 05a647deed Issue #18192: Introduce importlib.util.MAGIC_NUMBER and document the 13 years ago
Brett Cannon 8f5ac5106e Issue #15767: Touch up ModuleNotFoundError usage by import. 13 years ago
Brett Cannon b1611e2772 Issue #15767: Introduce ModuleNotFoundError, a subclass of 13 years ago
Richard Oudkerk 409f90237c Issue #18180: Fix ref leak in _PyImport_GetDynLoadWindows(). 13 years ago
Brett Cannon 4e694d6fa9 tweak exception message (again) 13 years ago
Victor Stinner 9550ef30e3 Issue #9566: Fix compilater warnings on Windows 64-bit 13 years ago
Victor Stinner 56785eab33 Issue #9566: Fix compiler warning on Windows 64-bit 13 years ago
Brett Cannon af38f5a503 Tweak at the suggestion of Ezio Melotti for exception messages when 13 years ago
Benjamin Peterson e2135c6158 move definition to top of block 13 years ago
Brett Cannon 3e0651b5fa Issue #18065: For frozen packages set __path__ to []. 13 years ago
Brett Cannon 0dbb4c7f13 Issues #18088, 18089: Introduce 13 years ago
Brett Cannon 357c9fb055 Rename importlib.util.ModuleManager to module_to_load so that the name 13 years ago
Brett Cannon 3dc48d6f69 Issue #18070: importlib.util.module_for_loader() now sets __loader__ 13 years ago
Brett Cannon f5fe13099e Update importlib.h 13 years ago
Brett Cannon a3687f0d68 Introduce importlib.util.ModuleManager which is a context manager to 13 years ago
Charles-Francois Natali 74ca886788 Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant() 13 years ago