Browse Source

remove deleted modules from __init__.py

[SVN r23869]
Aleksey Gurtovoy 22 years ago
parent
commit
d65e326b79

+ 0 - 2
tools/regression/xsl_reports/utils/__init__.py

@@ -3,11 +3,9 @@ from accept_args import *
 from char_translation_table import *
 from check_existance import *
 from checked_system import *
-from http_get import *
 from libxslt import *
 from log import *
 from makedirs import *
-from rmtree import *
 from tar import *
 
 import sourceforge

+ 0 - 15
tools/regression/xsl_reports/utils/http_get.py

@@ -1,15 +0,0 @@
-
-import httplib
-
-def http_get( site, source, destination ):
-    h = httplib.HTTPConnection( site )
-    h.request( 'GET', source )
-    
-    response = h.getresponse()
-    f = open( destination, 'wb' )
-    while True:
-        data = response.read( 16*1024 )
-        if len( data ) == 0: break
-        f.write( data )
-
-    f.close()

+ 0 - 7
tools/regression/xsl_reports/utils/rmtree.py

@@ -1,7 +0,0 @@
-
-import utils.checked_system
-import os.path
-
-def rmtree( path ):
-    if os.path.exists( path ):
-        utils.checked_system( [ "rm -f -r \"%s\"" % path ] )

粤ICP备19079148号