diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-02-27 21:11:46 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-02-27 21:11:46 +0000 |
commit | 0f4e93d4348bbb357bda97505278d0c8738a1d53 (patch) | |
tree | b5f56d2ffb5d48b8eb9a8bd8babc55b8a9a0be3c /PCbuild/rmpyc.py | |
parent | 6efc6e783247f54e4dd3b4297a0a7d2bc654a141 (diff) | |
download | cpython-git-0f4e93d4348bbb357bda97505278d0c8738a1d53.tar.gz |
Backing out nested scopes broke the Windows build. Repairing.
Diffstat (limited to 'PCbuild/rmpyc.py')
-rw-r--r-- | PCbuild/rmpyc.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PCbuild/rmpyc.py b/PCbuild/rmpyc.py index 019c69b16e..a87eab86c9 100644 --- a/PCbuild/rmpyc.py +++ b/PCbuild/rmpyc.py @@ -1,5 +1,7 @@ # Remove all the .pyc and .pyo files under ../Lib. +from __future__ import nested_scopes + def deltree(root): import os def rm(path): |