2008/link-testsuite/harness/lib Documentation.py,1.2,1.3 LinkTestCase.py,1.3,1.4 W3CLinkCheckerClient.py,1.1,1.2

Update of /sources/public/2008/link-testsuite/harness/lib
In directory hutz:/tmp/cvs-serv4432/harness/lib

Modified Files:
	Documentation.py LinkTestCase.py W3CLinkCheckerClient.py 
Log Message:
Clean up unused imports.

Index: LinkTestCase.py
===================================================================
RCS file: /sources/public/2008/link-testsuite/harness/lib/LinkTestCase.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- LinkTestCase.py	23 May 2011 17:10:21 -0000	1.3
+++ LinkTestCase.py	23 May 2011 17:15:53 -0000	1.4
@@ -9,9 +9,6 @@
 http://www.w3.org/Consortium/Legal/copyright-software
 """
 
-import sys
-import os
-import re
 import unittest
 from W3CLinkCheckerClient import W3CLinkCheckerClient
 

Index: W3CLinkCheckerClient.py
===================================================================
RCS file: /sources/public/2008/link-testsuite/harness/lib/W3CLinkCheckerClient.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- W3CLinkCheckerClient.py	28 Jan 2008 02:09:40 -0000	1.1
+++ W3CLinkCheckerClient.py	23 May 2011 17:15:53 -0000	1.2
@@ -9,8 +9,6 @@
 http://www.w3.org/Consortium/Legal/copyright-software
 """
 
-import sys
-import os
 import re
 import unittest
 import urllib, urllib2
@@ -103,4 +101,4 @@
         self.assertEqual( wlc_reports.keys()[0], '404', "for this case, there should be one 404 in the parse dict")
 
 if __name__ == '__main__':
-    unittest.main()
\ No newline at end of file
+    unittest.main()

Index: Documentation.py
===================================================================
RCS file: /sources/public/2008/link-testsuite/harness/lib/Documentation.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Documentation.py	8 Jan 2009 21:39:59 -0000	1.2
+++ Documentation.py	23 May 2011 17:15:53 -0000	1.3
@@ -9,7 +9,6 @@
 http://www.w3.org/Consortium/Legal/copyright-software
 """
 
-import sys
 import os
 import unittest
 import LinkTestCase
@@ -77,4 +76,4 @@
 
 
 if __name__ == '__main__':
-    unittest.main()
\ No newline at end of file
+    unittest.main()

Received on Monday, 23 May 2011 17:15:57 UTC