diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2015-11-27 23:02:24 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-11-27 23:02:24 -0500 |
| commit | 111a8d26aadb31496596320cf35ef4f648f7b62b (patch) | |
| tree | 20bddaef920208c09d0b81d574407c14d821a1c9 /setuptools/command | |
| parent | 1808b23f9d4f8114ff8baa1afd9770e3ff9a4659 (diff) | |
| parent | 32237eae19b3722b2a1c87bc0a74613c5f12d6fd (diff) | |
| download | python-setuptools-git-111a8d26aadb31496596320cf35ef4f648f7b62b.tar.gz | |
Merged in sunpoet/setuptools (pull request #158)
Fix package list inconsistency caused by namespace package on Python 3.5
Diffstat (limited to 'setuptools/command')
| -rw-r--r-- | setuptools/command/install_lib.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/setuptools/command/install_lib.py b/setuptools/command/install_lib.py index 9b772227..78fe6891 100644 --- a/setuptools/command/install_lib.py +++ b/setuptools/command/install_lib.py @@ -79,6 +79,8 @@ class install_lib(orig.install_lib): base = os.path.join('__pycache__', '__init__.' + imp.get_tag()) yield base + '.pyc' yield base + '.pyo' + yield base + '.opt-1.pyc' + yield base + '.opt-2.pyc' def copy_tree( self, infile, outfile, |
