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 91babb9 commit 3b4dba0Copy full SHA for 3b4dba0
setupegg.py
@@ -3,4 +3,5 @@
3
4
# Import setuptools and call the actual setup
5
import setuptools
6
-execfile('setup.py')
+with open('setup.py', 'rb') as f:
7
+ exec(compile(f.read(), 'setup.py', 'exec'))
0 commit comments