Show More
@@ -88,7 +88,10 b' class StoreMagics(Magics):' | |||
|
88 | 88 | |
|
89 | 89 | ville@badger:~$ ipython |
|
90 | 90 | In [1]: l |
|
91 | Out[1]: ['hello', 10, 'world'] | |
|
91 | NameError: name 'l' is not defined | |
|
92 | In [2]: %store -r | |
|
93 | In [3]: l | |
|
94 | Out[3]: ['hello', 10, 'world'] | |
|
92 | 95 | |
|
93 | 96 | Usage: |
|
94 | 97 | |
@@ -98,7 +101,7 b' class StoreMagics(Magics):' | |||
|
98 | 101 | to disk |
|
99 | 102 | * ``%store -d spam`` - Remove the variable and its value from storage |
|
100 | 103 | * ``%store -z`` - Remove all variables from storage |
|
101 |
* ``%store -r`` - Refresh all variables from store ( |
|
|
104 | * ``%store -r`` - Refresh all variables from store (overwrite | |
|
102 | 105 | current vals) |
|
103 | 106 | * ``%store -r spam bar`` - Refresh specified variables from store |
|
104 | 107 | (delete current val) |
General Comments 0
You need to be logged in to leave comments.
Login now