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