summaryrefslogtreecommitdiffstats
path: root/Lib/compileall.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/compileall.py')
-rw-r--r--Lib/compileall.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/compileall.py b/Lib/compileall.py
index ea2ee7f..49c3e6b 100644
--- a/Lib/compileall.py
+++ b/Lib/compileall.py
@@ -93,12 +93,6 @@ def compile_file(fullname, ddir=None, force=0, rx=None, quiet=False,
cache_dir = os.path.dirname(cfile)
head, tail = name[:-3], name[-3:]
if tail == '.py':
- if not legacy:
- try:
- os.mkdir(cache_dir)
- except OSError as error:
- if error.errno != errno.EEXIST:
- raise
if not force:
try:
mtime = int(os.stat(fullname).st_mtime)