summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md4
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