Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e564278 commit 3e6d438Copy full SHA for 3e6d438
1 file changed
Lib/distutils/command/install_lib.py
@@ -56,7 +56,8 @@ def run (self):
56
outfiles = self.install()
57
58
# (Optionally) compile .py to .pyc
59
- self.bytecompile(outfiles)
+ if outfiles is not None:
60
+ self.bytecompile(outfiles)
61
62
# run ()
63
0 commit comments