]> granicus.if.org Git - python/commitdiff
Get rid of evil workaround for Python 1.4b2 bug.
authorGuido van Rossum <guido@python.org>
Tue, 22 Oct 1996 18:59:47 +0000 (18:59 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 22 Oct 1996 18:59:47 +0000 (18:59 +0000)
Lib/xdrlib.py

index 66a4523098a4f0bc34b971af1ead3d9ea0cdc2d2..3c1823312a97e5ba224a2ff78a5b8077159ff972 100644 (file)
@@ -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