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 f785042 commit e7e2eceCopy full SHA for e7e2ece
1 file changed
setup.py
@@ -456,11 +456,11 @@ def detect_modules(self):
456
# *** Uncomment these for TOGL extension only:
457
# -lGL -lGLU -lXext -lXmu \
458
459
- self.extensions = exts
+ self.extensions.extend(exts)
460
461
def main():
462
setup(name = 'Python standard library',
463
- version = '2.0',
+ version = '%d.%d' % sys.version_info[:2],
464
cmdclass = {'build_ext':PyBuildExt},
465
# The struct module is defined here, because build_ext won't be
466
# called unless there's at least one extension module defined.
0 commit comments