From c3fd7f02475a5404031eb26ed9bc9fc65aafff95 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 26 Sep 2009 14:22:01 -0500 Subject: [PATCH] don't need to import py --HG-- branch : trunk --- py/execnet/serializer.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/py/execnet/serializer.py b/py/execnet/serializer.py index 349ab139e..902c33c37 100755 --- a/py/execnet/serializer.py +++ b/py/execnet/serializer.py @@ -5,8 +5,6 @@ Simple marshal format (based on pickle) designed to work across Python versions. import sys import struct -import py - _INPY3 = _REALLY_PY3 = sys.version_info > (3, 0) class SerializeError(Exception):