We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa068fe commit 89a5196Copy full SHA for 89a5196
core/shell.py
@@ -957,9 +957,9 @@ def Main(
957
# First, process --eval flags. In interactive mode, this comes before --rcfile.
958
# (It could be used for the headless shell. Although terminals have a bootstrap process.)
959
# Note that --eval
960
- if flag.eval:
+ if flag.eval is not None:
961
raise AssertionError()
962
- if flag.eval_pure:
+ if flag.eval_pure is not None:
963
raise AssertionError('pure')
964
965
#
0 commit comments