We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c9f37c commit ea44aecCopy full SHA for ea44aec
bpython/simpleeval.py
@@ -74,10 +74,10 @@ def simple_eval(node_or_string, namespace=None):
74
* variable names causing lookups in the passed in namespace or builtins
75
* getitem calls using the [] syntax on objects of the types above
76
77
- Like the Python 3 (and unlike the Python 2) literal_eval, unary and binary
78
- + and - operations are allowed on all builtin numeric types.
+ Like Python 3's literal_eval, unary and binary + and - operations are
+ allowed on all builtin numeric types.
79
80
- The optional namespace dict-like ought not to cause side effects on lookup
+ The optional namespace dict-like ought not to cause side effects on lookup.
81
"""
82
if namespace is None:
83
namespace = {}
0 commit comments