- 15 Mar, 2016 5 kayıt (commit)
-
-
Victor Stinner yazdı
* Add Lib/test/signalinterproctester.py * Don't disable the garbage collector anymore * Don't use os.fork() with a subprocess to not inherit existing signal handlers or threads: start from a fresh process * Don't use UNIX kill command to send a signal but Python os.kill() * Use a timeout of 10 seconds to wait for the signal instead of 1 second * Always use signal.pause(), instead of time.wait(1), to wait for a signal * Use context manager on subprocess.Popen * remove code to retry on EINTR: it's no more needed since the PEP 475 * remove unused function exit_subprocess() * Cleanup the code
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Robert Collins yazdı
Patch from Victor van den Elzen.
-
Robert Collins yazdı
Patch from Victor van den Elzen.
-
- 14 Mar, 2016 19 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #26558: The debug hook of PyObject_Malloc() now checks that the GIL is held when the function is called.
-
Victor Stinner yazdı
Issue #10915, #15751, #26558: * PyGILState_Check() now returns 1 (success) before the creation of the GIL and after the destruction of the GIL. It allows to use the function early in Python initialization and late in Python finalization. * Add a flag to disable PyGILState_Check(). Disable PyGILState_Check() when Py_NewInterpreter() is called * Add assert(PyGILState_Check()) to: _Py_dup(), _Py_fstat(), _Py_read() and _Py_write()
-
Victor Stinner yazdı
Fix regex for parse a pointer address.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Ignore pip warning in test_venv.test_with_venv().
-
Victor Stinner yazdı
Fix a warning on Windows 64-bit.
-
Victor Stinner yazdı
It's more to fix a conversion warning during compilation, I don't think that Windows support current working directory larger than 2 GB ...
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Issue #17758: Skip test_site if site.USER_SITE directory doesn't exist and cannot be created.
-
Victor Stinner yazdı
On 32-bit system, only 4 bytes after dumped for the tail.
-
Victor Stinner yazdı
Pointers are formatted differently.
-
Victor Stinner yazdı
The first instruction of tracemalloc_add_trace() is traceback_new() which already checks the GIL.
-
Victor Stinner yazdı
Issue #26558: If Py_FatalError() is called without the GIL, don't try to print the current exception, nor try to flush stdout and stderr: only dump the traceback of Python threads.
-
Victor Stinner yazdı
Issue #26516: * Add PYTHONMALLOC environment variable to set the Python memory allocators and/or install debug hooks. * PyMem_SetupDebugHooks() can now also be used on Python compiled in release mode. * The PYTHONMALLOCSTATS environment variable can now also be used on Python compiled in release mode. It now has no effect if set to an empty string. * In debug mode, debug hooks are now also installed on Python memory allocators when Python is configured without pymalloc.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Berker Peksag yazdı
in BaseHTTPRequestHandler Initial patch by karlcow.
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-
- 13 Mar, 2016 8 kayıt (commit)
-
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
#25687: clarify that errors in tearDown increase the total number of reported errors. Initial patch by HyeSoo Park.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 12 Mar, 2016 8 kayıt (commit)
-
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Serhiy Storchaka yazdı
Tamás Bence Gedai.
-
Serhiy Storchaka yazdı
Tamás Bence Gedai.
-