~ubuntu-branches/ubuntu/natty/lightning-extension/natty-security

« back to all changes in this revision

Viewing changes to mozilla/other-licenses/virtualenv/virtualenv_embedded/distutils-init.py

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-09-03 14:00:01 UTC
  • mfrom: (1.1.24)
  • Revision ID: package-import@ubuntu.com-20120903140001-iee9509f51oz7pqs
Tags: 1.8+build1-0ubuntu0.11.04.1
* New upstream stable release to support Thunderbird 16 (CALENDAR_1_8_BUILD1)
  - LP: #1062587

* Add extra Makefiles that are needed for the build
  - update debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
    __path__.insert(0, distutils_path)
16
16
    exec(open(os.path.join(distutils_path, '__init__.py')).read())
17
17
 
18
 
try:
19
 
    import dist
20
 
    import sysconfig
21
 
except ImportError:
22
 
    from distutils import dist, sysconfig
 
18
from distutils import dist, sysconfig
 
19
 
23
20
try:
24
21
    basestring
25
22
except NameError: