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 c280808 commit a2b7f78Copy full SHA for a2b7f78
mathics/builtin/base.py
@@ -385,8 +385,8 @@ class AtomBuiltin(Builtin):
385
# which are by default not in the definitions' contribution pipeline.
386
# see Image[] for an example of this.
387
388
- def get_name(self) -> str:
389
- name = super(AtomBuiltin, self).get_name()
+ def get_name(self, short=False) -> str:
+ name = super(AtomBuiltin, self).get_name(short=short)
390
return re.sub(r"Atom$", "", name)
391
392
0 commit comments