An error occurred fetching the project authors.
- 09 Oct, 2017 1 commit
-
-
Victor Stinner authored
bpo-31701: On Windows, faulthandler.enable() now ignores MSC and COM exceptions.
-
- 07 Sep, 2017 1 commit
-
-
Antoine Pitrou authored
* Remove Setup.config * Always define WITH_THREAD for compatibility.
-
- 06 Jun, 2017 1 commit
-
-
Victor Stinner authored
On Windows 8, 8.1 and 10 at least, the exit code is the exception code (no bit is cleared).
-
- 05 Jun, 2017 1 commit
-
-
Steve Dower authored
* bpo-30557: faulthandler now correctly filters and displays exception codes on Windows * Adds test for non-fatal exceptions. * Adds bpo number to comment.
-
- 21 Apr, 2017 1 commit
-
-
Victor Stinner authored
* bpo-30125: Cleanup faulthandler.c * Use size_t type for iterators * Add { ... } * bpo-30125: Fix faulthandler.disable() on Windows On Windows, faulthandler.disable() now removes the exception handler installed by faulthandler.enable().
-
- 16 Dec, 2016 1 commit
-
-
Serhiy Storchaka authored
-
- 13 Nov, 2016 2 commits
-
-
Xavier de Gaye authored
with a cosmetic change to add a commit message with the issue number, missing from the previous two commits.
-
Xavier de Gaye authored
-
- 10 Sep, 2016 1 commit
-
-
Eric V. Smith authored
Issue 27948: Allow backslashes in the literal string portion of f-strings, but not in the expressions. Also, require expressions to begin and end with literal curly braces.
-
- 08 Sep, 2016 1 commit
-
-
R David Murray authored
And most of the tools. Patch by Emanual Barry, reviewed by me, Serhiy Storchaka, and Martin Panter.
-
- 03 Sep, 2016 1 commit
-
-
Eric V. Smith authored
Issue 27921: Remove backslash from another f-string. I'll revert this change before beta 2. I also need to look in to why test_tools/test_unparse fails with the files that are now being skipped.
-
- 17 Apr, 2016 1 commit
-
-
Serhiy Storchaka authored
-
- 23 Mar, 2016 2 commits
-
-
Victor Stinner authored
Issue #23848, #26622: * faulthandler now only logs fatal Windows exceptions. * write error code as decimal, not as hexadecimal * replace "Windows exception" with "Windows fatal exception"
-
Victor Stinner authored
Issue #23848: On Windows, faulthandler.enable() now also installs an exception handler to dump the traceback of all Python threads on any Windows exception, not only on UNIX signals (SIGSEGV, SIGFPE, SIGABRT).
-
- 16 Mar, 2016 1 commit
-
-
Victor Stinner authored
Issue #26563: * Add _PyGILState_GetInterpreterStateUnsafe() function: the single PyInterpreterState used by this process' GILState implementation. * Enhance _Py_DumpTracebackThreads() to retrieve the interpreter state from autoInterpreterState in last resort. The function now accepts NULL for interp and current_tstate parameters. * test_faulthandler: fix a ResourceWarning when test is interrupted by CTRL+c
-
- 15 Mar, 2016 1 commit
-
-
Victor Stinner authored
Issue #26558.
-
- 06 May, 2015 1 commit
-
-
Berker Peksag authored
Patch by Christie Wilson.
-
- 13 Mar, 2015 1 commit
-
-
Victor Stinner authored
subprocess doesn't support pass_fds on Windows.
-
- 12 Mar, 2015 1 commit
-
-
Victor Stinner authored
functions of faulthandler now accept file descriptors. Patch by Wei Wu.
-
- 23 Jan, 2015 1 commit
-
-
Gregory P. Smith authored
mode. Explicitly remove the PYTHONFAULTHANDLER environment variable before launching a child interpreter when its presence would impact the test (the reason -E was being used in the first place). This enables running the test in an environment where other Python environment variables must be set in order for things to run (such as using PYTHONHOME to tell an embedded interpreter where it should think it lives).
-
- 30 Sep, 2014 1 commit
-
-
Victor Stinner authored
because _read_null() cannot be used on AIX. On AIX, reading from NULL is allowed: the first page of memory is a mapped read-only on AIX.
-
- 24 Sep, 2014 1 commit
-
-
Victor Stinner authored
-
- 10 Aug, 2014 1 commit
-
-
Victor Stinner authored
Patch written by Xavier de Gaye.
-
- 21 Jul, 2014 1 commit
-
-
Victor Stinner authored
- Use _testcapi.raise_signal() in test_signal - close also os.pipe() file descriptors in some test_signal tests where they were not closed properly - Remove faulthandler._sigill() and faulthandler._sigbus(): reuse _testcapi.raise_signal() in test_faulthandler
-
- 14 May, 2014 1 commit
-
-
Victor Stinner authored
None: RuntimeError("sys.stderr is None") instead of AttributeError("'NoneType' object has no attribute 'fileno'").
-
- 21 Oct, 2013 1 commit
-
-
Guido van Rossum authored
-
- 08 Oct, 2013 1 commit
-
-
Antoine Pitrou authored
Issue #18948: improve SuppressCoreFiles to include Windows crash popup suppression, and use it in more tests. Patch by Valerie Lambert and Zachary Ware.
-
- 08 Sep, 2013 1 commit
-
-
Victor Stinner authored
faulthandler module if the variable is non-empty. Same behaviour than other variables like PYTHONDONTWRITEBYTECODE.
-
- 03 Jul, 2013 1 commit
-
-
Victor Stinner authored
AIX maps the first page of memory at address zero as valid, read-only. Reading NULL is not a fault on AIX. This is utilized by IBM compiler optimizations. One speculatively can indirect through a pointer which may be null without first testing if null and defer the test before using the value.
-
- 25 Jun, 2013 1 commit
-
-
Victor Stinner authored
(test.regrtest and test.script_helper enable faulthandler module in subprocesses).
-
- 17 Jun, 2013 1 commit
-
-
Victor Stinner authored
faulthandler._read_null() is not reliable: it does not crash on AIX.
-
- 13 Jun, 2013 1 commit
-
-
Brett Cannon authored
instead of manually listing tests for test.support.run_unittest().
-
- 05 Mar, 2013 2 commits
-
-
Ezio Melotti authored
-
Ezio Melotti authored
-
- 23 Sep, 2012 1 commit
-
-
Victor Stinner authored
dump_traceback_later() and cancel_dump_tracebacks_later() to cancel_dump_traceback_later().
-
- 22 Sep, 2012 1 commit
-
-
Georg Brandl authored
-
- 01 Aug, 2012 1 commit
-
-
Victor Stinner authored
to 500 characters.
-
- 31 Jul, 2012 1 commit
-
-
Victor Stinner authored
faulthandler requires the importlib if "-X faulthandler" option is present on the command line, so initialize faulthandler after importlib. Add also an unit test.
-
- 06 May, 2012 1 commit
-
-
Vinay Sajip authored
Closes #14729: Allowed test to pass on Windows by adjusting the test condition slightly to allow for a Windows-specific error message.
-
- 01 Sep, 2011 1 commit
-
-
Charles-François Natali authored
sigaltstack(2) doesn't work when linked with pthread.
-