Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
py3: fix last doctest in ext folder
Browse files Browse the repository at this point in the history
  • Loading branch information
fchapoton committed Jun 12, 2019
1 parent 2393ace commit 8090659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/ext/fast_callable.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ AUTHOR:
``COND ? T : F`` expression or the Python ``T if COND else F``.
This lets you define piecewise functions using :func:`fast_callable`. ::
sage: v4 = etb.choice(v3 >= etb.constant(0), v1, v2)
sage: v4 = etb.choice(v3 >= etb.constant(0), v1, v2) # not tested
The arguments are ``(COND, T, F)`` (the same order as in C), so the
above means that if ``v3`` evaluates to a nonnegative number,
Expand Down

0 comments on commit 8090659

Please sign in to comment.