diff options
author | PJ Eby <distutils-sig@python.org> | 2006-09-06 21:01:13 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-09-06 21:01:13 +0000 |
commit | 243812655538358387c703bbd3789d2df05ca18b (patch) | |
tree | bec5f71614a6fda896eb4c50b8f5ebff6d87f74d /setuptools/command/develop.py | |
parent | 7d8ac102b900a1934c9d710b1eea59beb7945f0e (diff) | |
download | external_python_setuptools-243812655538358387c703bbd3789d2df05ca18b.tar.gz external_python_setuptools-243812655538358387c703bbd3789d2df05ca18b.tar.bz2 external_python_setuptools-243812655538358387c703bbd3789d2df05ca18b.zip |
Generated scripts now use ``-x`` on the ``#!`` line when ``sys.executable``
contains non-ASCII characters, to prevent deprecation warnings about an
unspecified encoding when the script is run.
(backport from trunk)
--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4051791
Diffstat (limited to 'setuptools/command/develop.py')
-rwxr-xr-x | setuptools/command/develop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/develop.py b/setuptools/command/develop.py index 0c20dd8d..fc35ad85 100755 --- a/setuptools/command/develop.py +++ b/setuptools/command/develop.py @@ -3,7 +3,7 @@ from distutils.util import convert_path from pkg_resources import Distribution, PathMetadata, normalize_path from distutils import log from distutils.errors import * -import sys, os +import sys, os, setuptools class develop(easy_install): """Set up package for development""" |