##// END OF EJS Templates
Remove docs for deprecated extensions...
Remove docs for deprecated extensions cythonmagic and sympyprinting are no longer part of our code. In both cases, we deprecated it with a warning in 3.x, and in 4.x the extension won't work but will print a message pointing you to what to do instead. We can remove the modules entirely for 5.x.

File last commit:

r16114:15cc5a8e
r21573:18bbe9af
Show More
embed_no_division.py
6 lines | 291 B | text/x-python | PythonLexer
/ tools / tests / embed / embed_no_division.py
"""This tests that future compiler flags are passed to the embedded IPython."""
from IPython import embed
import __future__
embed(banner1='', header='check 1/2 == 0 in Python 2')
embed(banner1='', header='check 1/2 == 0.5 in Python 2',
compile_flags=__future__.division.compiler_flag)