we do not need a custom subprocess module anymore

This commit is contained in:
Thomas Nagy 2012-02-08 21:27:29 +01:00
parent a30aa80dcc
commit 8144fc74f9
1 changed files with 1 additions and 7 deletions

View File

@ -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