- Add a --warn=future-deprecated option for advance warnings about
deprecated features that still have warnings hidden by default.
+ - Don't fail if can't import a _subprocess module on Windows.
+
From Greg Spencer:
- Support implicit dependency scanning of files encoded in utf-8
STARTF_USESHOWWINDOW, CREATE_NEW_CONSOLE
from win32event import WaitForSingleObject, INFINITE, WAIT_OBJECT_0
else:
- from _subprocess import *
+ # SCons: don't die on Python versions that don't have _subprocess.
+ try:
+ from _subprocess import *
+ except ImportError:
+ pass
class STARTUPINFO:
dwFlags = 0
hStdInput = None