mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 23:50:17 +00:00
1ab4c78fc8
git-svn-id: http://svn.pyinstaller.org/trunk@636 8dd32b29-ccff-0310-8a9a-9233e24343b1
10 lines
211 B
Python
10 lines
211 B
Python
"""
|
|
import xml.etree.ElementTree
|
|
from copy import copy, deepcopy
|
|
import _elementtree
|
|
import xml.etree.cElementTree
|
|
print dir(xml.etree.cElementTree)
|
|
"""
|
|
from xml.etree.cElementTree import ElementTree
|
|
print "OK"
|