Skip to content

Commit 0509913

Browse files
committed
TR update
1 parent 3ffb306 commit 0509913

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python-eval-mathrepl/mathrepl.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
__author__ = "Leodanis Pozo Ramos"
99

1010
ALLOWED_NAMES = {
11-
name: obj for name, obj in math.__dict__.items() if "__" not in name
11+
name: obj for name, obj in math.__dict__.items()
12+
if not name.startswith("__")
1213
}
1314

1415
PS1 = "mr>>"

0 commit comments

Comments
 (0)