From 50c7439aeaf04a565b5ae7dd7f6940d263124c45 2013-12-11 00:20:16 From: MinRK Date: 2013-12-11 00:20:16 Subject: [PATCH] add missing help strings to HistoryManager configurables The result was missing information in generated config files. --- diff --git a/IPython/core/history.py b/IPython/core/history.py index 85d0939..ce0df78 100644 --- a/IPython/core/history.py +++ b/IPython/core/history.py @@ -436,11 +436,14 @@ class HistoryManager(HistoryAccessor): # The number of the current session in the history database session_number = Integer() - # Should we log output to the database? (default no) - db_log_output = Bool(False, config=True) - # Write to database every x commands (higher values save disk access & power) - # Values of 1 or less effectively disable caching. - db_cache_size = Integer(0, config=True) + + db_log_output = Bool(False, config=True, + help="Should the history database include output? (default: no)" + ) + db_cache_size = Integer(0, config=True, + help="Write to database every x commands (higher values save disk access & power).\n" + "Values of 1 or less effectively disable caching." + ) # The input and output caches db_input_cache = List() db_output_cache = List()