##// END OF EJS Templates
Make the example values in the default ipython_config.py the same as the default settings.
Thomas Kluyver -
Show More
@@ -154,8 +154,8 b' c = get_config()'
154 #-----------------------------------------------------------------------------
154 #-----------------------------------------------------------------------------
155
155
156 # Enable logging output as well as input to the database.
156 # Enable logging output as well as input to the database.
157 # c.HistoryManager.db_log_output = True
157 # c.HistoryManager.db_log_output = False
158
158
159 # Only write to the database every 40 commands - this can save disk access (and
159 # Only write to the database every n commands - this can save disk
160 # hence power) over the default of writing on every command.
160 # access (and hence power) over the default of writing on every command.
161 # c.HistoryManager.db_cache_size = 40
161 # c.HistoryManager.db_cache_size = 0
@@ -163,8 +163,6 b' def test_macro():'
163 # List macros.
163 # List macros.
164 assert "test" in ip.magic("macro")
164 assert "test" in ip.magic("macro")
165
165
166 # XXX This should be a doctest, but the doctest logic doesn't seem to do
167 # dynamic transformations (like expanding macros). Doing it like this for now.
168 def test_macro_run():
166 def test_macro_run():
169 """Test that we can run a multi-line macro successfully."""
167 """Test that we can run a multi-line macro successfully."""
170 ip = get_ipython()
168 ip = get_ipython()
General Comments 0
You need to be logged in to leave comments. Login now