From: Guido van Rossum Date: Tue, 22 Oct 1996 18:59:47 +0000 (+0000) Subject: Get rid of evil workaround for Python 1.4b2 bug. X-Git-Tag: v1.4~55 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=176f10e3d5b686b4cc888cf722fb94c7ae189fab;p=thirdparty%2FPython%2Fcpython.git Get rid of evil workaround for Python 1.4b2 bug. --- diff --git a/Lib/xdrlib.py b/Lib/xdrlib.py index 66a4523098a4..3c1823312a97 100644 --- a/Lib/xdrlib.py +++ b/Lib/xdrlib.py @@ -10,10 +10,6 @@ support for those representations we can't do much with from Python. import struct from types import LongType -# workaround Python 1.4b2 bug -import sys -sys.path[0] = '.' - # use C layer XDR libraries for some data types if available try: import _xdr