Commit 111a8d26 authored by Jason R. Coombs's avatar Jason R. Coombs

Merged in sunpoet/setuptools (pull request #158)

Fix package list inconsistency caused by namespace package on Python 3.5
parents 1808b23f 32237eae
......@@ -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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment