mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Issue #20978: pyflakes: fix undefined names
This commit is contained in:
parent
790bd6dd13
commit
69b1e261fc
3 changed files with 2 additions and 3 deletions
|
@ -29,7 +29,7 @@ from .reduction import ForkingPickler
|
|||
|
||||
try:
|
||||
import _winapi
|
||||
from _winapi import WAIT_OBJECT_0, WAIT_TIMEOUT, INFINITE
|
||||
from _winapi import WAIT_OBJECT_0, WAIT_ABANDONED_0, WAIT_TIMEOUT, INFINITE
|
||||
except ImportError:
|
||||
if sys.platform == 'win32':
|
||||
raise
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue