summaryrefslogtreecommitdiff
path: root/tests/pyscript/py_locals.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2021-03-26 13:56:33 -0400
committeranselor <anselor@gmail.com>2021-03-30 15:05:20 -0400
commit2397280cad072a27a51f5ec1cc64908039d14bd1 (patch)
tree1e72725041a8e3f83f31dddbfd564fcd02f27401 /tests/pyscript/py_locals.py
parent070262e1f397e2297cdb1ad611db6b6d5bed8830 (diff)
downloadcmd2-git-2397280cad072a27a51f5ec1cc64908039d14bd1.tar.gz
Renamed use_ipython keyword parameter of cmd2.Cmd.__init__() to include_ipy.
Added include_py keyword parameter to cmd2.Cmd.__init__(). If False, then the py command will not be available. Removed ability to run Python commands from the command line with py. Made banners and exit messages of Python and IPython consistent. Changed utils.is_text_file() to raise OSError if file cannot be read.
Diffstat (limited to 'tests/pyscript/py_locals.py')
-rw-r--r--tests/pyscript/py_locals.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/pyscript/py_locals.py b/tests/pyscript/py_locals.py
new file mode 100644
index 00000000..16cb6926
--- /dev/null
+++ b/tests/pyscript/py_locals.py
@@ -0,0 +1,5 @@
+# flake8: noqa F821
+# Tests how much a pyscript can affect cmd2.Cmd.py_locals
+
+del [locals()["test_var"]]
+my_list.append(2)