~ubuntu-branches/ubuntu/trusty/python3.3/trusty

« back to all changes in this revision

Viewing changes to Lib/distutils/command/install.py

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-11-19 08:46:55 UTC
  • mfrom: (22.1.15 sid)
  • Revision ID: package-import@ubuntu.com-20131119084655-pueqfadzs5v1xf53
Tags: 3.3.3-1
* Python 3.3.3 release.
* Update to 20131119 from the 3.3 branch.
* Regenerate the patches.
* Update the symbols files.
* Fix test support when the running kernel doesn't handle port reuse.
* libpython3.3-minimal replaces libpython3.3-stdlib (<< 3.2.3-7).
  Closes: #725240.

Show diffs side-by-side

added added

removed removed

Lines of Context:
545
545
        self.extra_dirs = extra_dirs
546
546
 
547
547
    def change_roots(self, *names):
548
 
        """Change the install direcories pointed by name using root."""
 
548
        """Change the install directories pointed by name using root."""
549
549
        for name in names:
550
550
            attr = "install_" + name
551
551
            setattr(self, attr, change_root(self.root, getattr(self, attr)))