diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-05-08 19:52:21 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-05-08 19:52:21 (GMT) |
commit | 25216baf3222e782fdeb5480b8692dc25dd7a97a (patch) | |
tree | 271e95412fb851e7d4dc4f52d7b628cd95a360a6 /Lib/compileall.py | |
parent | e5da82ff4ca8bdd6c6abc0ff84710b6ea4b3b518 (diff) | |
download | cpython-25216baf3222e782fdeb5480b8692dc25dd7a97a.zip cpython-25216baf3222e782fdeb5480b8692dc25dd7a97a.tar.gz cpython-25216baf3222e782fdeb5480b8692dc25dd7a97a.tar.bz2 |
Create __pycache__ dir when the pyc path is explicitly given
Patch from Arfrever Frehtes Taifersar Arahesis.
Diffstat (limited to 'Lib/compileall.py')
-rw-r--r-- | Lib/compileall.py | 6 |
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) |