Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
2087023fdec2c89070bd14f384a3c308c548a94a
/
Doc
/
c-api
998b806
Revert "bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)" (GH-9187)
by Victor Stinner
· 6 years ago
886483e
bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)
by Victor Stinner
· 6 years ago
c5989cd
bpo-34523: Py_DecodeLocale() use UTF-8 on Windows (GH-8998)
by Victor Stinner
· 6 years ago
defcffd
bpo-12743: Delete comment from marshal.rst (GH-8457)
by Berker Peksag
· 6 years ago
5092439
bpo-33892: Doc: Use gender neutral words (GH-7770)
by Andrés Delfino
· 6 years ago
9e7c921
bpo-17045: Improve C-API doc for PyTypeObject. (gh-7413)
by Eric Snow
· 6 years ago
b2f5f59
bpo-33592: Document the C API in PEP 567 (contextvars) (GH-7033)
by Elvis Pranskevichus
· 6 years ago
f5b1183
bpo-5945: Improve mappings and sequences C API docs. (GH-7029)
by Serhiy Storchaka
· 6 years ago
1179f4b
bpo-33583: Add note in PyObject_GC_Resize() doc (GH-7021)
by INADA Naoki
· 6 years ago
bde3e0b
Fix C API docs: PyCapsule_Import always set an exception on failure. (GH-6967)
by Serhiy Storchaka
· 6 years ago
42ec190
bpo-33195: Doc: Deprecate Py_UNICODE in c-api/arg (GH-6329)
by INADA Naoki
· 7 years ago
aa50bf0
bpo-33126: Document PyBuffer_ToContiguous() (#6292)
by Antoine Pitrou
· 7 years ago
bc77eff
bpo-33042: Fix pre-initialization sys module configuration (GH-6157)
by Nick Coghlan
· 7 years ago
c2b0b12
bpo-32374: m_traverse may be called with m_state=NULL (GH-5140)
by Marcel Plch
· 7 years ago
7a1e178
bpo-32500: Correct the documentation for PySequence_Size() and PySequence_Length() (GH-5767)
by Zackery Spytz
· 7 years ago
5bb0005
Make formatting of some return codes conforming to the general style. (#5587)
by Serhiy Storchaka
· 7 years ago
2914bb3
bpo-20891: Py_Initialize() now creates the GIL (#4700)
by Victor Stinner
· 7 years ago
f5b04a3
Document the error return of PyLong_As* APIs. (#5396)
by Gregory P. Smith
· 7 years ago
79db11c
Fix PyTrace_RETURN documentation (GH-5384)
by Xiang Zhang
· 7 years ago
255f7a2
bpo-32649: Add C API docs for per-opcode tracing & profiling (GH-5360)
by Xiang Zhang
· 7 years ago
9ed0aee
bpo-32687: Fix wrong meaning of args for PyTrace_LINE/CALL in documentation (#5361)
by Xiang Zhang
· 7 years ago
04af5b1
bpo-10381: Add timezone to datetime C API (#5032)
by Paul Ganssle
· 7 years ago
131fd7f
bpo-17799: Explain real behaviour of sys.settrace and sys.setprofile (#4056)
by Pablo Galindo
· 7 years ago
9089a26
bpo-29240: PyUnicode_DecodeLocale() uses UTF-8 on Android (#5272)
by Victor Stinner
· 7 years ago
7ed7aea
bpo-29240: Fix locale encodings in UTF-8 Mode (#5170)
by Victor Stinner
· 7 years ago
a5552f0
bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746)
by Serhiy Storchaka
· 7 years ago
91106cd
bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)
by Victor Stinner
· 7 years ago
4ae06c5
bpo-32241: Add the const qualifire to declarations of umodifiable strings. (#4748)
by Serhiy Storchaka
· 7 years ago
31a8393
Revert "bpo-32197: Try to fix a compiler error on OS X introduced in bpo-32030. (#4681)" (#4694)
by Victor Stinner
· 7 years ago
13badcb
bpo-32197: Try to fix a compiler error on OS X introduced in bpo-32030. (#4681)
by Serhiy Storchaka
· 7 years ago
af5a895
bpo-32030: _PyPathConfig_Init() sets home and program_name (#4673)
by Victor Stinner
· 7 years ago
b4d1e1f
bpo-20891: Fix PyGILState_Ensure() (#4650)
by Victor Stinner
· 7 years ago
5d39e04
bpo-32030: Rework memory allocators (#4625)
by Victor Stinner
· 7 years ago
84c4b19
bpo-32124: Document C functions safe before init (#4540)
by Victor Stinner
· 7 years ago
e0582a3
bpo-30696: Fix the REPL looping endlessly when no memory (GH-4160)
by xdegaye
· 7 years ago
8c663fd
Replace KB unit with KiB (#4293)
by Victor Stinner
· 7 years ago
2138163
bpo-29179: Document the Py_UNUSED macro (#4341)
by Petr Viktorin
· 7 years ago
54cc0c0
bpo-31338: C API intro: add missing versionadded (#4339)
by Victor Stinner
· 7 years ago
8bf288e
Docs: Mention that Py_UNREACHABLE was added in 3.7 (#4337)
by Petr Viktorin
· 7 years ago
82cd3ce
bpo-31678: Fix typo in PyDateTime_DELTA_GET_MICROSECONDS (GH-3869)
by Phobosmir
· 7 years ago
e8b1965
bpo-23699: Use a macro to reduce boilerplate code in rich comparison functions (GH-793)
by stratakis
· 7 years ago
ec2cbdd
bpo-20064: Document PyObject_Malloc() (#4199)
by Victor Stinner
· 7 years ago
831d61d
Fix wording about Py_tss_NEEDS_INIT in docs (GH-4096)
by Masayuki Yamamoto
· 7 years ago
1b9e76e
bpo-31754: Fix type of 'itemsize' in PyBuffer_FillContiguousStrides (GH-3993)
by vyas45
· 7 years ago
4d3f084
bpo-27867: Add a porting guide for PySlice_GetIndicesEx(). (#1973)
by Serhiy Storchaka
· 7 years ago
0ccc0f6
bpo-28280: Make PyMapping_Keys(), PyMapping_Values() and PyMapping_Items() always return a list (#3840)
by Oren Milman
· 7 years ago
a51b90a
Document Py_GETENV() (#3890)
by Barry Warsaw
· 7 years ago
731e189
bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362)
by Masayuki Yamamoto
· 7 years ago
3f9eee6
bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593)
by Eric Snow
· 7 years ago
da67e0d
bpo-29916: Include PyGetSetDef in C API extension documentation. (#831)
by Michael Seifert
· 7 years ago
b2e5794
bpo-31338 (#3374)
by Barry Warsaw
· 7 years ago
93c92f7
bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)
by Eric Snow
· 7 years ago
86b7afd
bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)
by Eric Snow
· 7 years ago
e613e6a
bpo-30708: Check for null characters in PyUnicode_AsWideCharString(). (#2285)
by Serhiy Storchaka
· 7 years ago
5ea4c06
bpo-30054: Expose tracemalloc C API (#1236)
by Victor Stinner
· 7 years ago
2d0afef
bpo-30656: Fix Python C API Module Objects documentation (GH-2170)
by Emily Morehouse
· 7 years ago
163468a
bpo-16500: Don't use string constants for os.register_at_fork() behavior (#1834)
by Gregory P. Smith
· 7 years ago
f7ecfac
Doc nits for bpo-16500 (#1841)
by Antoine Pitrou
· 7 years ago
346cbd3
bpo-16500: Allow registering at-fork handlers (#1715)
by Antoine Pitrou
· 7 years ago
e377416
bpo-29102: Add a unique ID to PyInterpreterState. (#1639)
by Eric Snow
· 7 years ago
3378b20
Fix typos in multiple `.rst` files (#1668)
by delirious-lettuce
· 7 years ago
2ddf5a1
bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480)
by Xiang Zhang
· 8 years ago
88c38b3
bpo-28415: Note 0 conversion different between Python and C (#885)
by Louie Lu
· 8 years ago
26896f2
bpo-29751: Improve PyLong_FromString documentation (GH-915)
by csabella
· 8 years ago
eaeda64
bpo-19225: Remove duplicated description for standard warning categories (GH-1068)
by cocoatomo
· 8 years ago
0dc5c31
bpo-30059: Include Py_Ellipsis in C API documentation (#1018)
by Michael Seifert
· 8 years ago
e8c7631
bpo-19225: Add a table of warning names and missed exception names in C API doc (#881)
by cocoatomo
· 8 years ago
84b8e92
bpo-29918: Add missed "const" modifiers in C API documentation. (#846)
by Serhiy Storchaka
· 8 years ago
c3c7ef0
bpo-29917: DOC: Remove link from PyMethodDef (#890)
by csabella
· 8 years ago
aefa7eb
bpo-6532: Make the thread id an unsigned integer. (#781)
by Serhiy Storchaka
· 8 years ago
c85a266
bpo-28749: Fixed the documentation of the mapping codec APIs. (#487)
by Serhiy Storchaka
· 8 years ago
c611a5b
bpo-29746: Update marshal docs to Python 3. (#547)
by Serhiy Storchaka
· 8 years ago
f669fff
fix minor bug in pymalloc. (#335)
by INADA Naoki
· 8 years ago
6e08baf
Issue #27867: Function PySlice_GetIndicesEx() is deprecated and replaced with
by Serhiy Storchaka
· 8 years ago
2a404b6
Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8()
by Serhiy Storchaka
· 8 years ago
f816023
Issue #29292: Merge 3.6.
by Xiang Zhang
· 8 years ago
346454c
Issue #29292: Merge 3.5.
by Xiang Zhang
· 8 years ago
6ad85bf
Issue #29292: Update outdated doc of PyEval_EvalCodeEx.
by Xiang Zhang
· 8 years ago
849b6bd
Issue #15657: Merge METH_KEYWORDS doc from 3.6
by Martin Panter
· 8 years ago
a27b3b3
Issue #15657: Merge other doc fix from 3.5
by Martin Panter
· 8 years ago
5b66723
Issue #15657: Delete incorrect statement from PyMethodDef documentation
by Martin Panter
· 8 years ago
9da31f7
Issue #15657: METH_KEYWORDS cannot be used alone in Python 3
by Martin Panter
· 8 years ago
fc60083
Issue #29087: Removed the documentation of non-existing UCS4 support functions.
by Serhiy Storchaka
· 8 years ago
44223e9
Issue #29087: Removed the documentation of non-existing UCS4 support functions.
by Serhiy Storchaka
· 8 years ago
af9181a
Issue #29087: Removed the documentation of non-existing UCS4 support functions.
by Serhiy Storchaka
· 8 years ago
fc3723b
Merge from 3.6.
by Serhiy Storchaka
· 8 years ago
a8803d2
Merge from 3.5.
by Serhiy Storchaka
· 8 years ago
4398c12
Issue #29068: Fixed a typo in PyErr_Fetch example. Patch by Chi Hsuan Yen.
by Serhiy Storchaka
· 8 years ago
b211068
Issue #28822: Adjust indices handling of PyUnicode_FindChar().
by Xiang Zhang
· 8 years ago
bd0ff94
Issue #29009: Merge 3.6.
by Xiang Zhang
· 8 years ago
47888da
Issue #29009: Merge 3.5.
by Xiang Zhang
· 8 years ago
bfbc29c
Issue #29009: Remove outdated doc of PyUnicode_RichCompare.
by Xiang Zhang
· 8 years ago
b5e3959
Issue #28771: Merge C API doc fix from 3.6
by Martin Panter
· 8 years ago
2179961
Issue #28771: Merge C API doc fix from 3.5
by Martin Panter
· 8 years ago
7a44783
Issue #28771: Update tp_get/setattr signature documentation
by Martin Panter
· 8 years ago
2d0eb65
Uniformize argument names of "call" functions
by Victor Stinner
· 8 years ago
fb3134f
Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions.
by Serhiy Storchaka
· 8 years ago
9a953db
Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions.
by Serhiy Storchaka
· 8 years ago
419967b
Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions.
by Serhiy Storchaka
· 8 years ago
048afd9
Remove CALL_PROFILE special build
by Victor Stinner
· 8 years ago
Next »