mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 09:57:15 +01:00
we do not need a custom subprocess module anymore
This commit is contained in:
parent
a30aa80dcc
commit
8144fc74f9
@ -10,13 +10,7 @@ through Python versions 2.3 to 3.X and across different platforms (win32, linux,
|
||||
"""
|
||||
|
||||
import os, sys, errno, traceback, inspect, re, shutil, datetime, gc
|
||||
try:
|
||||
import subprocess
|
||||
except:
|
||||
try:
|
||||
import waflib.extras.subprocess as subprocess
|
||||
except:
|
||||
print("The subprocess module is missing (python2.3?):\n try calling 'waf update --files=subprocess'\n or add a copy of subprocess.py to the python libraries")
|
||||
import subprocess # <- leave this!
|
||||
|
||||
try:
|
||||
from collections import deque
|
||||
|
Loading…
Reference in New Issue
Block a user