ipython_nose icon indicating copy to clipboard operation
ipython_nose copied to clipboard

Nose magic for IPython

Results 5 ipython_nose issues
Sort by recently updated
recently updated
newest added

Based off `ipython3` (#8).

- publish_display_data signature dropped the `source` parameter - publish_display_data moved from displaypub to display Based off `update-travis` (#10).

--- TypeError Traceback (most recent call last) in () ----> 1 get_ipython().magic(u'nose') /usr/local/lib/python2.7/dist-packages/IPython/core/interactiveshell.pyc in magic(self, arg_s) 2302 magic_name, _, magic_arg_s = arg_s.partition(' ') 2303 magic_name = magic_name.lstrip(prefilter.ESC_MAGIC) -> 2304 return...

This does what you'd expect: ``` python import sys import time sys.stdout.write('a') sys.stdout.flush() time.sleep(5) sys.stdout.write('b') ``` But when I do the equivalent within the extension/plugin, I get a separate line...