mirror of
https://github.com/python/cpython.git
synced 2025-07-08 03:45:36 +00:00
gh-90716: add _pylong.py module (#96673)
Add Python implementations of certain longobject.c functions. These use asymptotically faster algorithms that can be used for operations on integers with many digits. In those cases, the performance overhead of the Python implementation is not significant since the asymptotic behavior is what dominates runtime. Functions provided by this module should be considered private and not part of any public API. Co-author: Tim Peters <tim.peters@gmail.com> Co-author: Mark Dickinson <dickinsm@gmail.com> Co-author: Bjorn Martinsson
This commit is contained in:
parent
5d30544485
commit
de6981680b
6 changed files with 572 additions and 0 deletions
1
Python/stdlib_module_names.h
generated
1
Python/stdlib_module_names.h
generated
|
@ -58,6 +58,7 @@ static const char* _Py_stdlib_module_names[] = {
|
|||
"_py_abc",
|
||||
"_pydecimal",
|
||||
"_pyio",
|
||||
"_pylong",
|
||||
"_queue",
|
||||
"_random",
|
||||
"_scproxy",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue