diff options
| author | Guido van Rossum <guido@python.org> | 1999-02-23 23:07:51 (GMT) | 
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1999-02-23 23:07:51 (GMT) | 
| commit | 83c03e2d94da97e715b18c29e27a553832b09065 (patch) | |
| tree | 5b0711ff722aeeeb5dfae78e125f18075ce15edb /Lib/shutil.py | |
| parent | b6cf9a4fc46344ea346643cb58c36792c03a0bf0 (diff) | |
| download | cpython-83c03e2d94da97e715b18c29e27a553832b09065.zip cpython-83c03e2d94da97e715b18c29e27a553832b09065.tar.gz cpython-83c03e2d94da97e715b18c29e27a553832b09065.tar.bz2  | |
Add import sys, needed by reference to sys.exc_info() in rmtree().
Discovered by Mitch Chapman.
Diffstat (limited to 'Lib/shutil.py')
| -rw-r--r-- | Lib/shutil.py | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py index b44a069..eb334f7 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -5,6 +5,7 @@ XXX The functions here don't copy the data fork or other metadata on Mac.  """  import os +import sys  import stat  | 
