##// END OF EJS Templates
ipython_directive, report except/warn in block and add :okexcept: :okwarning: options to suppress
ipython_directive, report except/warn in block and add :okexcept: :okwarning: options to suppress

File last commit:

r9190:20a102a5
r14779:8e7a5d1a
Show More
embed_division.py
5 lines | 266 B | text/x-python | PythonLexer
Bradley M. Froehle
Add test scripts for embed with compile flags.
r7896 """This tests that future compiler flags are passed to the embedded IPython."""
from __future__ import division
from IPython import embed
embed(banner1='', header='check 1/2 == 0.5 in Python 2')
embed(banner1='', header='check 1/2 = 0 in Python 2', compile_flags=0)