##// END OF EJS Templates
Skip useless doctest for %store magic.
Thomas Kluyver -
Show More
@@ -13,6 +13,7 b' To automatically restore stored variables at startup, add this to your'
13 13
14 14 from IPython.core.error import TryNext, UsageError
15 15 from IPython.core.plugin import Plugin
16 from IPython.testing.skipdoctest import skip_doctest
16 17 from IPython.utils import pickleshare
17 18 from IPython.utils.traitlets import Bool, Instance
18 19
@@ -50,6 +51,7 b' def restore_data(ip):'
50 51 restore_aliases(ip)
51 52 restore_dhist(ip)
52 53
54 @skip_doctest
53 55 def magic_store(self, parameter_s=''):
54 56 """Lightweight persistence for python variables.
55 57
General Comments 0
You need to be logged in to leave comments. Login now