Skip to content

Commit e2e0926

Browse files
committed
Merge remote-tracking branch
2 parents ea4a6c7 + b72645a commit e2e0926

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

python-eval-mathrepl/mathrepl.py

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

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

1514
PS1 = "mr>>"

0 commit comments

Comments
 (0)