##// END OF EJS Templates
Partly revert "remove now-obsolete use of skip_doctest outside core"...
Partly revert "remove now-obsolete use of skip_doctest outside core" This partly reverts commit 02234da0d461f5ddee142d51952dc10a86b8074e. test_decorators.py is intended to test skip_doctest, the removing was wrong.

File last commit:

r26640:38efac31
r26938:fda2ebea
Show More
empty-hist-range.rst
19 lines | 662 B | text/x-rst | RstLexer

Empty History Ranges

A number of magics that take history ranges can now be used with an empty range. These magics are:

  • %save
  • %load
  • %pastebin
  • %pycat

Using them this way will make them take the history of the current session up to the point of the magic call (such that the magic itself will not be included).

Therefore it is now possible to save the whole history to a file using simple %save <filename>, load and edit it using %load (makes for a nice usage when followed with :kbd:`F2`), send it to dpaste.org using %pastebin, or view the whole thing syntax-highlighted with a single %pycat.