diff options
author | Guido van Rossum <guido@python.org> | 1999-05-03 18:12:36 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-05-03 18:12:36 (GMT) |
commit | ff3932abcd5ddf779cafd1885583fcddcc577eaa (patch) | |
tree | 734aefce042e703c1a59545b3ad8d1ee5beddb8d /Lib/pipes.py | |
parent | 699f3bbba3c98f7d802f541b61cdbd5c0a9dd3a7 (diff) | |
download | cpython-ff3932abcd5ddf779cafd1885583fcddcc577eaa.zip cpython-ff3932abcd5ddf779cafd1885583fcddcc577eaa.tar.gz cpython-ff3932abcd5ddf779cafd1885583fcddcc577eaa.tar.bz2 |
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 2bb6ee3..b82ed0c 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') |