summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-11-27 23:02:24 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-11-27 23:02:24 -0500
commit111a8d26aadb31496596320cf35ef4f648f7b62b (patch)
tree20bddaef920208c09d0b81d574407c14d821a1c9 /setuptools/command
parent1808b23f9d4f8114ff8baa1afd9770e3ff9a4659 (diff)
parent32237eae19b3722b2a1c87bc0a74613c5f12d6fd (diff)
downloadpython-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.py2
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,