summaryrefslogtreecommitdiffstats
path: root/Lib/xdrlib.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-10-22 18:59:47 (GMT)
committerGuido van Rossum <guido@python.org>1996-10-22 18:59:47 (GMT)
commit176f10e3d5b686b4cc888cf722fb94c7ae189fab (patch)
tree56bc7906e6134e17676fa82cc805acc313a3ba99 /Lib/xdrlib.py
parenta31e084136a52adc11c56fc971a7802c565448b7 (diff)
downloadcpython-176f10e3d5b686b4cc888cf722fb94c7ae189fab.zip
cpython-176f10e3d5b686b4cc888cf722fb94c7ae189fab.tar.gz
cpython-176f10e3d5b686b4cc888cf722fb94c7ae189fab.tar.bz2
Get rid of evil workaround for Python 1.4b2 bug.
Diffstat (limited to 'Lib/xdrlib.py')
-rw-r--r--Lib/xdrlib.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/xdrlib.py b/Lib/xdrlib.py
index 66a4523..3c18233 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