]> granicus.if.org Git - python/commitdiff
No need to import sys. (Andrew Dalke & kjpylint)
authorGuido van Rossum <guido@python.org>
Mon, 3 May 1999 18:13:51 +0000 (18:13 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 3 May 1999 18:13:51 +0000 (18:13 +0000)
Lib/htmllib.py
Lib/pty.py

index 77be4709ce54a9ea6d78e9390c8c10a2965ecf24..9cf962cb38590e20bad25be3f8be173d7871339b 100644 (file)
@@ -5,7 +5,6 @@ http://www.w3.org/hypertext/WWW/MarkUp/html-spec/html-spec_toc.html
 """
 
 
-import sys
 import string
 from sgmllib import SGMLParser
 from formatter import AS_IS
index 53a4b2d3a9f3a3a2a2b5887fdda921ee2592e3af..2ba193828d7b6bf4f9e6f39686a6032746b89921 100644 (file)
@@ -7,7 +7,7 @@
 # Author: Steen Lumholt -- with additions by Guido.
 
 from select import select
-import os, sys, FCNTL
+import os, FCNTL
 import tty
 
 STDIN_FILENO = 0