mirror of
https://github.com/python/cpython.git
synced 2025-07-31 07:04:42 +00:00
sys.checkinterval() now refreshes the current countdown ticker.
This commit is contained in:
parent
88fc66179b
commit
19b851d11b
2 changed files with 8 additions and 0 deletions
|
@ -16,6 +16,13 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- sys.setcheckinterval() now updates the current ticker count as well as updating
|
||||||
|
the check interval, so if the user decreases the check interval, the ticker
|
||||||
|
doesn't have to wind down to zero from the old starting point before the new
|
||||||
|
interval takes effect. And if the user increases the interval, it makes sure
|
||||||
|
the new limit takes effect right away rather have an early task switch before
|
||||||
|
recognizing the new interval.
|
||||||
|
|
||||||
- Issue #12085: Fix an attribute error in subprocess.Popen destructor if the
|
- Issue #12085: Fix an attribute error in subprocess.Popen destructor if the
|
||||||
constructor has failed, e.g. because of an undeclared keyword argument. Patch
|
constructor has failed, e.g. because of an undeclared keyword argument. Patch
|
||||||
written by Oleg Oshmyan.
|
written by Oleg Oshmyan.
|
||||||
|
|
|
@ -466,6 +466,7 @@ sys_setcheckinterval(PyObject *self, PyObject *args)
|
||||||
{
|
{
|
||||||
if (!PyArg_ParseTuple(args, "i:setcheckinterval", &_Py_CheckInterval))
|
if (!PyArg_ParseTuple(args, "i:setcheckinterval", &_Py_CheckInterval))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
_Py_Ticker = _Py_CheckInterval;
|
||||||
Py_INCREF(Py_None);
|
Py_INCREF(Py_None);
|
||||||
return Py_None;
|
return Py_None;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue