summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/create.py
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-09-18 21:12:30 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-09-18 21:12:30 (GMT)
commitc1b7e7f8bbcae936a5e75277e9e86d9ebec5469f (patch)
tree8f179ac3234e344d366bce980199e0c4be71ca25 /Lib/packaging/create.py
parentf30b5ae6fd03b497a43d30489663a6baa9f2d800 (diff)
downloadcpython-c1b7e7f8bbcae936a5e75277e9e86d9ebec5469f.zip
cpython-c1b7e7f8bbcae936a5e75277e9e86d9ebec5469f.tar.gz
cpython-c1b7e7f8bbcae936a5e75277e9e86d9ebec5469f.tar.bz2
A few style changes originally done in the distutils2 repo
Diffstat (limited to 'Lib/packaging/create.py')
-rw-r--r--Lib/packaging/create.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/packaging/create.py b/Lib/packaging/create.py
index 1e84e2e..34a8c82 100644
--- a/Lib/packaging/create.py
+++ b/Lib/packaging/create.py
@@ -25,10 +25,11 @@ import sys
import glob
import shutil
import sysconfig
-import tokenize
from hashlib import md5
from textwrap import dedent
+from tokenize import detect_encoding
from configparser import RawConfigParser
+
# importing this with an underscore as it should be replaced by the
# dict form or another structures for all purposes
from packaging._trove import all_classifiers as _CLASSIFIERS_LIST
@@ -111,7 +112,7 @@ def load_setup():
been loaded before, because we are monkey patching its setup function with
a particular one"""
with open("setup.py", "rb") as f:
- encoding, lines = tokenize.detect_encoding(f.readline)
+ encoding, lines = detect_encoding(f.readline)
with open("setup.py", encoding=encoding) as f:
imp.load_module("setup", f, "setup.py", (".py", "r", imp.PY_SOURCE))