Made 'import this' not print.

This commit is contained in:
Jeremy Fincher 2003-09-01 08:05:14 +00:00
parent 862489d205
commit 6c81eb9084
1 changed files with 6 additions and 1 deletions

View File

@ -44,7 +44,6 @@ import sys
import new import new
import md5 import md5
import sha import sha
import this
import time import time
import math import math
import cmath import cmath
@ -57,6 +56,12 @@ import telnetlib
import threading import threading
import mimetypes import mimetypes
# Stupid printing on import...
from cStringIO import StringIO
sys.stdout = StringIO()
import this
sys.stdout = sys.__stdout__
#import conf #import conf
import debug import debug
import utils import utils