Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
mmatera committed Mar 30, 2024
1 parent 715eb6c commit 4dd5b72
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mathics/builtin/numeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -625,8 +625,9 @@ class RealValuedNumberQ(Builtin):
# No docstring since this is internal and it will mess up documentation.
# FIXME: Perhaps in future we will have a more explicite way to indicate not
# to add something to the docs.
no_doc = True
context = "Internal`"

summary_text = "test whether an expression is a real number"
rules = {
"Internal`RealValuedNumberQ[x_Real]": "True",
"Internal`RealValuedNumberQ[x_Integer]": "True",
Expand All @@ -639,6 +640,7 @@ class RealValuedNumericQ(Builtin):
# No docstring since this is internal and it will mess up documentation.
# FIXME: Perhaps in future we will have a more explicite way to indicate not
# to add something to the docs.
no_doc = True
context = "Internal`"

rules = {
Expand Down
1 change: 1 addition & 0 deletions mathics/docpipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,7 @@ def show_and_return():

return show_and_return()


def test_chapters(
include_chapters: set,
quiet=False,
Expand Down

0 comments on commit 4dd5b72

Please sign in to comment.