index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Doc
/
c-api
/
long.rst
Commit message (
Expand
)
Author
Age
Files
Lines
*
Python 3.14.0a3
v3.14.0a3
Hugo van Kemenade
2024-12-17
1
-2/+2
*
gh-102471, PEP 757: Add PyLong import and export API (#121339)
Victor Stinner
2024-12-13
1
-0/+174
*
Python 3.14.0a2
v3.14.0a2
Hugo van Kemenade
2024-11-19
1
-3/+3
*
gh-126061: Add PyLong_IsPositive/Zero/Negative() functions (#126065)
RUANG (James Roy)
2024-11-12
1
-0/+33
*
Doc: Fix typos (#125728)
ember91
2024-10-21
1
-1/+1
*
Python 3.14.0a1
v3.14.0a1
Hugo van Kemenade
2024-10-15
1
-1/+1
*
gh-101291: Add versionadded directives for PyUnstable_Long_* (#125384)
Sergey B Kirpichev
2024-10-13
1
-0/+5
*
gh-124385: Document and soft-deprecate PyLong_AS_LONG (GH-124386)
Petr Viktorin
2024-09-27
1
-1/+10
*
gh-121277: Allow `.. versionadded:: next` in docs (GH-121278)
Petr Viktorin
2024-09-25
1
-1/+1
*
gh-118915: Add/fix docs entries for some new 3.13 C API (GH-124134)
Petr Viktorin
2024-09-18
1
-0/+2
*
gh-120389: Add PyLong_FromInt64() and PyLong_AsInt64() (#120390)
Victor Stinner
2024-08-28
1
-0/+57
*
gh-121477: mention new PyLong_*Bytes() functions in PyLong_FromString() (#121...
Sergey B Kirpichev
2024-08-17
1
-3/+3
*
gh-122613: Document PyLong_GetInfo() (part of Limited API) (GH-#122280)
Sergey B Kirpichev
2024-08-03
1
-0/+11
*
gh-121115: Skip __index__ in PyLong_AsNativeBytes by default (GH-121118)
Steve Dower
2024-06-28
1
-4/+11
*
gh-116560: Add PyLong_GetSign() public function (#116561)
Sergey B Kirpichev
2024-06-03
1
-0/+13
*
gh-111140: minor docs typos cleanup in the C example API calls. (#118612)
Gregory P. Smith
2024-05-05
1
-3/+3
*
gh-111140: PyLong_From/AsNativeBytes: Take *flags* rather than just *endianne...
Steve Dower
2024-04-05
1
-45/+97
*
Docs: PyUnstable_Long_IsCompact() docs now mention PyLong_AsNativeBytes() (#1...
Sergey B Kirpichev
2024-03-13
1
-1/+1
*
gh-111140: Improve PyLong_AsNativeBytes API doc example & improve the test (#...
Gregory P. Smith
2024-02-22
1
-17/+57
*
gh-111140: Minor doc fixes for PyLong_AsNativeBytes (GH-115375)
Steve Dower
2024-02-12
1
-10/+14
*
gh-111140: Adds PyLong_AsNativeBytes and PyLong_FromNative[Unsigned]Bytes fun...
Steve Dower
2024-02-12
1
-0/+66
*
gh-115172: Fix explicit index extries for the C API (GH-115173)
Serhiy Storchaka
2024-02-11
1
-4/+4
*
gh-108444: Add PyLong_AsInt() public function (#108445)
Victor Stinner
2023-08-24
1
-0/+8
*
gh-106919: Use role :c:macro: for referencing the C "constants" (GH-106920)
Serhiy Storchaka
2023-07-21
1
-4/+4
*
gh-101100: Docs: Fix references to several numeric dunders (#106278)
F3eQnxN3RriK
2023-06-30
1
-18/+18
*
GH-101291: Add low level, unstable API for pylong (GH-101685)
Mark Shannon
2023-05-21
1
-0/+24
*
GH-97950: Use new-style index directive ('object') (#104158)
Adam Turner
2023-05-04
1
-2/+2
*
[docs] Mention how to get/set a bigint PyLong via the C API (#101270)
Gregory P. Smith
2023-01-24
1
-0/+4
*
gh-93738: Documentation C syntax (:c:type:<C type> -> :c:expr:<C type>) (#97768)
Adam Turner
2022-10-05
1
-21/+21
*
gh-59200: Clarify `PyLong_FromString` documentation (GH-94363)
JustAnotherArchivist
2022-07-28
1
-8/+9
*
More minor fixes to C API docs (GH-31525)
Jelle Zijlstra
2022-04-02
1
-1/+1
*
bpo-42528: Improve the docs of most Py*_Check{,Exact} API calls (GH-23602)
Antonio Cuni
2021-01-06
1
-2/+2
*
bpo-41211: Doc: Fix PyLong_FromUnicodeObject (GH-21325)
Inada Naoki
2020-07-05
1
-3/+1
*
bpo-41123: Remove PyLong_FromUnicode() (GH-21204)
Inada Naoki
2020-06-29
1
-11/+0
*
bpo-37999: Fix outdated __int__ and nb_int references in comments (GH-20449)
Mark Dickinson
2020-05-27
1
-30/+25
*
PyLong_AsLongLong() docs should say 'long long' (#18082)
Keith Erskine
2020-01-21
1
-1/+1
*
bpo-27961: Replace PY_ULLONG_MAX with ULLONG_MAX (GH-17539)
Sergey Fedoseev
2019-12-09
1
-1/+1
*
bpo-27961: Replace PY_LLONG_MAX, PY_LLONG_MIN and PY_ULLONG_MAX with standard...
Sergey Fedoseev
2019-12-05
1
-2/+2
*
bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950)
Serhiy Storchaka
2019-10-30
1
-9/+9
*
bpo-37599: Remove a vague statement in documentation of Integer Objects (#14786)
sgal
2019-07-16
1
-3/+1
*
bpo-37170: Fix the cast on error in PyLong_AsUnsignedLongLongMask() (GH-13860)
Zackery Spytz
2019-06-06
1
-2/+4
*
Doc: Replace the deprecated highlightlang directive by highlight. (#13377)
Stéphane Wirtel
2019-05-17
1
-1/+1
*
bpo-36048: Use __index__() instead of __int__() for implicit conversion if av...
Serhiy Storchaka
2019-02-25
1
-12/+54
*
Make formatting of some return codes conforming to the general style. (#5587)
Serhiy Storchaka
2018-02-09
1
-9/+9
*
Document the error return of PyLong_As* APIs. (#5396)
Gregory P. Smith
2018-01-29
1
-0/+34
*
bpo-29751: Improve PyLong_FromString documentation (GH-915)
csabella
2017-04-24
1
-7/+6
*
Issue #28496: Mark up constants 0, 1 and -1 that denote return values or
Serhiy Storchaka
2016-10-27
1
-2/+2
|
\
|
*
Issue #28496: Mark up constants 0, 1 and -1 that denote return values or
Serhiy Storchaka
2016-10-27
1
-2/+2
*
|
more PY_LONG_LONG to long long
Benjamin Peterson
2016-09-08
1
-9/+9
|
/
*
Issue #1772673: The type of `char*` arguments now changed to `const char*`.
Serhiy Storchaka
2013-10-19
1
-1/+1
[next]