@@ -111,7 +111,7 @@ Module scope and possible extensions
111111------------------------------------
112112
113113Unless we can just provide bindings to some well supported mathematical library
114- like the GMP, the module scope should be limited. For example, no primality
114+ like the GMP, the module scope should be limited. For example, no efficient primality
115115testing and factorization.
116116
117117There are possible additions, among proposed in the initial discussion thread
@@ -120,7 +120,7 @@ There are possible additions, among proposed in the initial discussion thread
120120
121121* ``c_div() `` --- for integer ceiling divide, see
122122 `relevant discussion thread <https://discuss.python.org/t/91269 >`_.
123- * ``gcdext() `` --- to solve linear Diophantine equation in two variables (the
123+ * ``gcdext() `` --- to solve linear ` Diophantine equation < https://en.wikipedia.org/wiki/Diophantine_equation >`_ in two variables (the
124124 :external+py3.14:class: `int ` implementation actually includes an extended
125125 Euclidean algorithm)
126126* ``isqrt_rem() `` --- to return both integer square root and a remainder (if
@@ -129,7 +129,7 @@ There are possible additions, among proposed in the initial discussion thread
129129 has a special handling for integer arguments. It's unique (with respect to other module
130130 functions) and not documented so far, see issue
131131 `python/cpython#120950 <https://github.com/python/cpython/issues/120950 >`_.
132- * ``fibonacci() ``.
132+ * ``fibonacci() `` --- ` Fibonacci sequence < https://en.wikipedia.org/wiki/Fibonacci_sequence >`_ .
133133
134134
135135Rejected ideas
0 commit comments