From: Guido van Rossum <guido@python.org>
Date: Wed, 15 Mar 2006 04:33:54 +0000 (+0000)
Subject: Use relative imports in a few places where I noticed the need.
X-Git-Tag: v2.5a0~247
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=87de069e4e6387e77bafae8aba2f73a70dccc1a2;p=python

Use relative imports in a few places where I noticed the need.
(Ideally, all packages in Python 2.5 will use the relative import
syntax for all their relative import needs.)
---

diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py
index 9bdbb16a8c..dc603be8b7 100644
--- a/Lib/distutils/sysconfig.py
+++ b/Lib/distutils/sysconfig.py
@@ -16,7 +16,7 @@ import re
 import string
 import sys
 
-from errors import DistutilsPlatformError
+from .errors import DistutilsPlatformError
 
 # These are needed in a couple of spots, so just compute them once.
 PREFIX = os.path.normpath(sys.prefix)
diff --git a/Lib/encodings/__init__.py b/Lib/encodings/__init__.py
index 01463bc34c..ddaacb9e3f 100644
--- a/Lib/encodings/__init__.py
+++ b/Lib/encodings/__init__.py
@@ -27,7 +27,8 @@ Written by Marc-Andre Lemburg (mal@lemburg.com).
 
 """#"
 
-import codecs, types, aliases
+import codecs, types
+from . import aliases
 
 _cache = {}
 _unknown = '--unknown--'