Changeset 402
- Timestamp:
- Fri Jan 11 10:17:37 2008
- Files:
-
- branches/python2.5/buildtests/test14.py (modified) (diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
branches/python2.5/buildtests/test14.py
r401 r402 29 29 30 30 out = subprocess.Popen(pyexe + ' -c "import xml.etree.cElementTree as cET; print dir(cET)"', 31 stdout=subprocess.PIPE).stdout.read().strip() 31 stdout=subprocess.PIPE, shell=True).stdout.read().strip() 31 31 assert str(dir(cET)) == out, (str(dir(cET)), out) 32 32
