diff options
author | Guido van Rossum <guido@python.org> | 1999-05-03 18:12:36 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-05-03 18:12:36 +0000 |
commit | ff3932abcd5ddf779cafd1885583fcddcc577eaa (patch) | |
tree | 734aefce042e703c1a59545b3ad8d1ee5beddb8d /Lib/pipes.py | |
parent | 699f3bbba3c98f7d802f541b61cdbd5c0a9dd3a7 (diff) | |
download | cpython-ff3932abcd5ddf779cafd1885583fcddcc577eaa.tar.gz cpython-ff3932abcd5ddf779cafd1885583fcddcc577eaa.zip |
No need to import os in test(). (Andrew Dalke & kjpylint)
Diffstat (limited to 'Lib/pipes.py')
-rw-r--r-- | Lib/pipes.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/pipes.py b/Lib/pipes.py index 2bb6ee317ab..b82ed0c4216 100644 --- a/Lib/pipes.py +++ b/Lib/pipes.py @@ -288,7 +288,6 @@ def quote(file): # Small test program and example def test(): - import os print 'Testing...' t = Template() t.append('togif $IN $OUT', 'ff') |