We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7b980c commit dd55dfaCopy full SHA for dd55dfa
1 file changed
doc/source/general.rst
@@ -14,14 +14,14 @@ For typical interactive use, it should therefore
14
generally be safe to ``import *``:
15
16
>>> from flint import *
17
- >>> fmpz(3) / 2
+ >>> fmpq(3) / 2
18
3/2
19
20
For non-interactive use, it is still good manners to use explicit
21
imports or preserve the ``flint`` namespace prefix::
22
23
>>> import flint
24
- >>> flint.fmpz(3)
+ >>> flint.fmpq(3) / 2
25
26
27
Global context
0 commit comments