mirror of
https://github.com/python/cpython.git
synced 2026-01-04 14:32:21 +00:00
Minor bug fix
This commit is contained in:
parent
81f51c74ea
commit
b2f6a7ec00
1 changed files with 1 additions and 1 deletions
|
|
@ -185,7 +185,7 @@ MacOS_SetScheduleTimes(PyObject *self, PyObject *args)
|
|||
bgi = bgy = -2;
|
||||
if (!PyArg_ParseTuple(args, "ll|ll", &fgi, &fgy, &bgi, &bgy))
|
||||
return NULL;
|
||||
if ( bgi == -2 ) {
|
||||
if ( bgi == -2 || bgy == -2 ) {
|
||||
bgi = fgi;
|
||||
bgy = fgy;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue