4973 Commits (a051bf3afbb30b7ddb7bd4c7ba03acc63288d6f2)

Author SHA1 Message Date
Victor Stinner 914cde89d4 On ResourceWarning, log traceback where the object was allocated 10 years ago
Victor Stinner 1231a4615f Add _showwarnmsg() and _formatwarnmsg() to warnings 10 years ago
Victor Stinner a2e5e044af Py_FatalError: disable faulthandler earlier 10 years ago
Victor Stinner 2025d7839b Py_FatalError: disable faulthandler earlier 10 years ago
Victor Stinner 861d9abfcf faulthandler now works in non-Python threads 10 years ago
Victor Stinner 013024ef67 Fix compilation error of traceback.c on Windows 10 years ago
Victor Stinner 82f04e2dfd regrtest: Fix module.__path__ 10 years ago
Victor Stinner 89e7cdcb9c Enhance and rewrite traceback dump C functions 10 years ago
Victor Stinner 8a1be61849 Add more checks on the GIL 10 years ago
Victor Stinner 4ddee7f5fd Fix Py_FatalError() if called without the GIL 10 years ago
Victor Stinner 791da1cc26 Fix Py_FatalError() if called without the GIL 10 years ago
Victor Stinner 34be807ca4 Add PYTHONMALLOC env var 10 years ago
Yury Selivanov c724bae51c coroutines: Error when awaiting on coroutine that's being awaited 10 years ago
Victor Stinner 2ad474ba5e Update assertion in compiler_addop_i() 10 years ago
Martin Panter 3263f6874a Issue #22836: Keep exception reports sensible despite errors 10 years ago
Victor Stinner fc6f2efd13 compile.c: inline compiler_use_new_block() 10 years ago
Benjamin Peterson 9d66d4af06 remove unused c_encoding struct member 10 years ago
Benjamin Peterson 768921cf33 rewrite parsestr() so it's comprehensible; remove dead code 10 years ago
Benjamin Peterson 202803a0c0 c_encoding can never be NULL, which allows some code simplification 10 years ago
Brett Cannon 4f38cb41fe Issue #26367: Have importlib.__init__() raise RuntimeError when 10 years ago
Serhiy Storchaka 885bdc4946 Issue #25985: sys.version_info is now used instead of sys.version 10 years ago
Serhiy Storchaka a9725f86a9 Issue #26312: SystemError is now raised in all programming bugs with using 10 years ago
Serhiy Storchaka 48a583b1d8 Issue #25698: Prevent possible replacing imported module with the empty one 10 years ago
Victor Stinner 15a3095d64 compiler: don't emit SyntaxWarning on const stmt 10 years ago
Victor Stinner a2724095cd compiler now ignores constant statements 10 years ago
Serhiy Storchaka 4cd63ef67a Issue #26198: ValueError is now raised instead of TypeError on buffer 10 years ago
Serhiy Storchaka c4b813d05d Issue #26198: Fixed error messages for some argument parsing errors. 10 years ago
Eric V. Smith eb588a1d10 Switch to more idiomatic C code. 10 years ago
Eric V. Smith 135d5f49f6 Fix issue 26287: While handling FORMAT_VALUE opcode, the top of stack was being corrupted if an error occurred in PyObject_Format(). 10 years ago
Martin Panter b5944220ab Issue #4806: Avoid masking original TypeError in call with * unpacking 10 years ago
Victor Stinner be59d1489b Issue #26146: enhance ast.Constant error message 10 years ago
Victor Stinner 25219f596a Issue #26146: remove useless code 10 years ago
Victor Stinner 726f6902ce Fix a refleak in validate_constant() 10 years ago
Victor Stinner f2c1aa1661 Add ast.Constant 10 years ago
Victor Stinner 1aa78938b0 Issue #26146: marshal.loads() now uses the empty frozenset singleton 10 years ago
Brett Cannon 9fa812668f Issue #18018: Raise an ImportError if a relative import is attempted 10 years ago
Brett Cannon 849113af6b Issue #25791: Warn when __package__ != __spec__.parent. 10 years ago
Victor Stinner b02ef715a3 Use Py_uintptr_t for atomic pointers 10 years ago
Victor Stinner 3cdd5fb970 code_richcompare() now uses the constants types 10 years ago
Victor Stinner efb2413ce8 code_richcompare() now uses the constants types 10 years ago
Victor Stinner f3914eb16d co_lnotab supports negative line number delta 10 years ago
Victor Stinner bfd316e750 Add _PyThreadState_UncheckedGet() 10 years ago
Georg Brandl 4b5b06203e Fix indentation of continuation lines. 10 years ago
Georg Brandl 5c60ea3fa1 Fix two instances of wrong indentation. 10 years ago
Brett Cannon 63b8505281 Issue #25791: Raise an ImportWarning when __spec__ or __package__ are 10 years ago
Serhiy Storchaka 576f132b98 Issue #20440: Cleaning up the code by using Py_SETREF. 10 years ago
Benjamin Peterson 75e3630c60 2016 will be another year of writing copyrighted code 10 years ago
Benjamin Peterson 3cc8f4b969 make recording and reporting errors and nonlocal and global directives more robust (closes #25973) 10 years ago
Brett Cannon eae3079041 Issue #25802: Deprecate load_module() on importlib.machinery.SourceFileLoader and SourcelessFileLoader. 10 years ago
Serhiy Storchaka 191321d11b Issue #20440: More use of Py_SETREF. 10 years ago