Skip to content

Commit 0efcea4

Browse files
committed
Fixed comments
1 parent c1c7cac commit 0efcea4

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

cmd2/cmd2.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -423,13 +423,14 @@ def __init__(self, completekey: str = 'tab', stdin=None, stdout=None, *,
423423
# Commands to exclude from the help menu and tab completion
424424
self.hidden_commands = ['eof', '_relative_load', '_relative_run_script']
425425

426-
# Commands to exclude from the history command
427-
# initialize history
426+
# Initialize history
428427
self._persistent_history_length = persistent_history_length
429428
self._initialize_history(persistent_history_file)
429+
430+
# Commands to exclude from the history command
430431
self.exclude_from_history = '''history edit eof'''.split()
431432

432-
# Command aliases and macros
433+
# Dictionary of macro names and their values
433434
self.macros = dict()
434435

435436
# Keeps track of typed command history in the Python shell

0 commit comments

Comments
 (0)