~ubuntu-branches/ubuntu/trusty/python-setuptools/trusty

« back to all changes in this revision

Viewing changes to setuptools/command/easy_install.py

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-03-23 09:06:50 UTC
  • mfrom: (6.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20140323090650-34z89iscdcdob7ut
Tags: 3.3-1ubuntu1
Stop building for Python 3.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
    VersionConflict, DEVELOP_DIST,
54
54
)
55
55
 
56
 
sys_executable = os.environ.get('__VENV_LAUNCHER__',
 
56
sys_executable = os.environ.get('__PYVENV_LAUNCHER__',
57
57
    os.path.normpath(sys.executable))
58
58
 
59
59
__all__ = [
766
766
            return clean_template
767
767
 
768
768
        if is_script:
 
769
            # See https://bitbucket.org/pypa/setuptools/issue/134 for info
 
770
            #  on script file naming and downstream issues with SVR4
769
771
            template_name = 'script template.py'
770
772
            if dev_path:
771
773
                template_name = template_name.replace('.py', ' (dev).py')