summaryrefslogtreecommitdiff
path: root/Doc/c-api
Commit message (Expand)AuthorAgeFilesLines
* bpo-37194: Complete PyObject_CallXXX() docs (GH-14156) (GH-14158)Victor Stinner2019-06-171-6/+13
* bpo-28805: document METH_FASTCALL (GH-14079)Miss Islington (bot)2019-06-161-12/+51
* [3.7] bpo-37170: Fix the cast on error in PyLong_AsUnsignedLongLongMask() (GH...Zackery Spytz2019-06-071-2/+4
* bpo-23395: Fix PyErr_SetInterrupt if the SIGINT signal is ignored or not hand...Miss Islington (bot)2019-05-241-6/+6
* bpo-36829: Enhance PyErr_WriteUnraisable() (GH-13487)Victor Stinner2019-05-221-0/+2
* bpo-36783: Add new references for C API Documentation changes (GH-13204)Miss Islington (bot)2019-05-181-6/+6
* bpo-31873: Update unicode.rst - 'unicode' capitalization (GH-4125)Miss Islington (bot)2019-05-081-12/+12
* bpo-36783: Added C API Documentation for Time_FromTimeAndFold and PyDateTime_...Miss Islington (bot)2019-05-071-0/+16
* [3.7] bpo-36427: Document that PyEval_RestoreThread and PyGILState_Ensure can...Pablo Galindo2019-04-141-0/+12
* Doc: define PY_SSIZE_T_CLEAN always (GH-12794)Miss Islington (bot)2019-04-121-1/+5
* [3.7] bpo-36389: _PyObject_IsFreed() now also detects uninitialized memory (G...Victor Stinner2019-04-111-2/+9
* Correct "inplace" with "in-place" (GH-10480)Miss Islington (bot)2019-04-081-2/+2
* bpo-36157:Document PyInterpreterState_Main() (GH-12238)Miss Islington (bot)2019-04-011-0/+5
* bpo-20844: open script file with "rb" mode (GH-12616)Inada Naoki2019-04-011-0/+4
* C API docs: Py_IsInitialized is always safe to call (GH-12630)Miss Islington (bot)2019-03-301-0/+1
* bpo-36185: Fix typo in Doc/c-api/objbuffer.rst. (GH-12204)Miss Islington (bot)2019-03-061-1/+1
* Document the surprising sideeffect PyErr_Print(). (GH-12081)Miss Islington (bot)2019-02-271-2/+6
* Correct name of 'defaultobj' parameter in PyDict_SetDefault() signature. (GH-...Miss Islington (bot)2019-02-251-1/+1
* Fix documented signatures for C API functions. (GH-11236)Miss Islington (bot)2018-12-192-5/+5
* bpo-35461: Document C API functions which suppress exceptions. (GH-11119)Miss Islington (bot)2018-12-187-4/+35
* Correct a couple of unbalanced parenthesis. (GH-10779)Miss Islington (bot)2018-12-051-1/+1
* Fix typo in Memory Management doc. (GH-10798)Miss Islington (bot)2018-11-301-1/+1
* bpo-16086: Fix PyType_GetFlags() documentation (GH-10758) (GH-10789)Miss Islington (bot)2018-11-291-1/+4
* [3.7] bpo-25438: document what codec PyMemberDef T_STRING decodes the char * ...Miss Islington (bot)2018-11-171-1/+2
* bpo-35229: Deprecate _PyObject_GC_TRACK() (GH-10511)Victor Stinner2018-11-131-0/+6
* [3.7] bpo-35110: Fix unintentional spaces around hyphens and dashes. (GH-1023...Serhiy Storchaka2018-10-311-1/+1
* bpo-35044, doc: Use the :exc: role for the exceptions (GH-10037)Miss Islington (bot)2018-10-261-1/+1
* [3.7] bpo-11233: Create availability directive for documentation (GH-9692) (G...Cheryl Sabella2018-10-152-8/+18
* bpo-34762: Fix contextvars C API to use PyObject* pointer types. (GH-9473)Miss Islington (bot)2018-09-211-10/+29
* bpo-12743: Delete comment from marshal.rst (GH-8457)Miss Islington (bot)2018-07-261-14/+10
* bpo-33892: Doc: Use gender neutral words (GH-7770)Miss Islington (bot)2018-06-171-1/+1
* bpo-33592: Document the C API in PEP 567 (contextvars) (GH-7033)Miss Islington (bot)2018-05-222-1/+126
* bpo-5945: Improve mappings and sequences C API docs. (GH-7029)Miss Islington (bot)2018-05-224-68/+93
* bpo-33583: Add note in PyObject_GC_Resize() doc (GH-7021)Miss Islington (bot)2018-05-211-1/+1
* Fix C API docs: PyCapsule_Import always set an exception on failure. (GH-6967)Miss Islington (bot)2018-05-181-2/+9
* bpo-33195: Doc: Deprecate Py_UNICODE in c-api/arg (GH-6329)Miss Islington (bot)2018-04-031-5/+22
* bpo-33126: Document PyBuffer_ToContiguous() (GH-6292) (GH-6294)Miss Islington (bot)2018-03-281-3/+9
* bpo-33042: Fix pre-initialization sys module configuration (GH-6157)Miss Islington (bot)2018-03-252-3/+15
* bpo-32374: m_traverse may be called with m_state=NULL (GH-5140)Miss Islington (bot)2018-03-161-3/+9
* bpo-32500: Correct the documentation for PySequence_Size() and PySequence_Len...Miss Islington (bot)2018-02-251-3/+2
* Make formatting of some return codes conforming to the general style. (GH-558...Miss Islington (bot)2018-02-093-13/+13
* bpo-20891: Py_Initialize() now creates the GIL (#4700)Victor Stinner2018-01-291-40/+23
* Document the error return of PyLong_As* APIs. (#5396)Gregory P. Smith2018-01-281-0/+34
* Fix PyTrace_RETURN documentation (GH-5384)Xiang Zhang2018-01-281-1/+1
* bpo-32649: Add C API docs for per-opcode tracing & profiling (GH-5360)Xiang Zhang2018-01-281-9/+20
* bpo-32687: Fix wrong meaning of args for PyTrace_LINE/CALL in documentation (...Xiang Zhang2018-01-281-2/+2
* bpo-10381: Add timezone to datetime C API (#5032)Paul Ganssle2018-01-241-11/+35
* bpo-17799: Explain real behaviour of sys.settrace and sys.setprofile (#4056)Pablo Galindo2018-01-241-5/+6
* bpo-29240: PyUnicode_DecodeLocale() uses UTF-8 on Android (#5272)Victor Stinner2018-01-221-4/+7
* bpo-29240: Fix locale encodings in UTF-8 Mode (#5170)Victor Stinner2018-01-152-0/+38