This commit is contained in:
Simon Forman 2020-05-18 20:48:30 -07:00
parent 605891d6d8
commit 95cd1e6cc6
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,6 @@ ALIASES = (
('bool', ['truthy']),
('mul', ['*']),
('floordiv', ['/floor', '//']),
('floor', ['round']),
('truediv', ['/', 'div']),
('mod', ['%', 'rem', 'remainder', 'modulus']),
('eq', ['=']),
@ -1408,6 +1407,7 @@ for F in (
UnaryBuiltinWrapper(sqrt),
UnaryBuiltinWrapper(floor),
UnaryBuiltinWrapper(round),
):
inscribe(F)
del F # Otherwise Sphinx autodoc will pick it up.