diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-12-06 12:41:32 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-12-06 12:41:32 -0500 |
commit | ab35dd08094fff561f6a54079e48c52b44fab4d9 (patch) | |
tree | 5de30c901e482c0124ec8f9e539559fceb67aefc /CHANGELOG.md | |
parent | 2b42671d462d6a538426f1f16a29c390c953b7e7 (diff) | |
download | cmd2-git-ab35dd08094fff561f6a54079e48c52b44fab4d9.tar.gz |
Added missing information to 0.9.12 change log entry
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d773f784..4c193e72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -249,11 +249,13 @@ * Removed *** from beginning of error messages printed by `do_help()` and `default()` * Significantly refactored ``cmd.Cmd`` class so that all class attributes got converted to instance attributes, also: * Added ``allow_redirection``, ``terminators``, ``multiline_commands``, and ``shortcuts`` as optional arguments - to ``cmd.Cmd.__init__()` + to ``cmd2.Cmd.__init__()` * A few instance attributes were moved inside ``StatementParser`` and properties were created for accessing them * ``self.pipe_proc`` is now called ``self.cur_pipe_proc_reader`` and is a ``ProcReader`` class. * Shell commands and commands being piped to while in a *pyscript* will function as if their output is going to a pipe and not a tty. This was necessary to be able to capture their output. + * Removed `reserved_words` class attribute due to lack of use + * Removed `keywords` instance attribute due to lack of use ## 0.9.11 (March 13, 2019) * Bug Fixes |