##// END OF EJS Templates
Use new names in docstring.
Emilio Graff -
Show More
@@ -653,14 +653,14 b' class AutoreloadMagics(Magics):'
653 List modules to automatically import and not to import.
653 List modules to automatically import and not to import.
654
654
655 %aimport foo
655 %aimport foo
656 Import module 'foo' and mark it to be autoreloaded for %autoreload 1
656 Import module 'foo' and mark it to be autoreloaded for %autoreload explicit
657
657
658 %aimport foo, bar
658 %aimport foo, bar
659 Import modules 'foo', 'bar' and mark them to be autoreloaded for %autoreload 1
659 Import modules 'foo', 'bar' and mark them to be autoreloaded for %autoreload explicit
660
660
661 %aimport -foo, bar
661 %aimport -foo, bar
662 Mark module 'foo' to not be autoreloaded for %autoreload 1, 2, or 3, and 'bar'
662 Mark module 'foo' to not be autoreloaded for %autoreload explicit, all, or complete, and 'bar'
663 to be autoreloaded for 1.
663 to be autoreloaded for mode explicit.
664 """
664 """
665 modname = parameter_s
665 modname = parameter_s
666 if not modname:
666 if not modname:
General Comments 0
You need to be logged in to leave comments. Login now