##// END OF EJS Templates
Fix quick reference documentation for 'exec'...
Fix quick reference documentation for 'exec' `exec` was a statement in Python 2.7, but it's a function in Python 3+. Following the old quickref line triggers a `SyntaxError` on Python 3: ``` In [2]: exec _i1 File "<ipython-input-12-f8fcb58cbaa6>", line 1 exec _i1 ^ SyntaxError: Missing parentheses in call to 'exec' ``` But it is fixed with the parentheses: ``` In [3]: exec(_i1) ```

File last commit:

r25167:79c601b9
r26955:09e2f50d
Show More
__init__.py
3 lines | 92 B | text/x-python | PythonLexer
# load extended setup modules for distutils
from .install_data_ext import install_data_ext