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 0ebcab5 commit 2f012e8Copy full SHA for 2f012e8
python-eval-mathrepl/mathrepl.py
@@ -8,8 +8,7 @@
8
__author__ = "Leodanis Pozo Ramos"
9
10
ALLOWED_NAMES = {
11
- name: obj for name, obj in math.__dict__.items() if not name.startswith(
12
- "__")
+ k: v for k, v in math.__dict__.items() if not k.startswith("__")
13
}
14
15
PS1 = "mr>>"
0 commit comments