cpython/Doc/c-api
Pablo Galindo fde9b33dfe
bpo-36427: Document that PyEval_RestoreThread and PyGILState_Ensure can terminate the calling thread (GH-12541)
Calling these function from a thread when the runtime is finalizing will terminate
the thread, even if the thread was not created by Python. Users can use 
_Py_IsFinalizing or sys.is_finalizing to check if the interpreter is in the process of
being finalized before calling this function to avoid unwanted termination.
2019-04-13 17:23:24 +01:00
..
abstract.rst
allocation.rst
apiabiversion.rst
arg.rst bpo-33195: Doc: Deprecate Py_UNICODE in c-api/arg (GH-6329) 2018-04-04 13:59:08 +09:00
bool.rst
buffer.rst bpo-35461: Document C API functions which suppress exceptions. (GH-11119) 2018-12-18 13:57:17 +02:00
bytearray.rst
bytes.rst
capsule.rst
cell.rst
code.rst
codec.rst bpo-35461: Document C API functions which suppress exceptions. (GH-11119) 2018-12-18 13:57:17 +02:00
complex.rst
concrete.rst
contextvars.rst
conversion.rst
coro.rst
datetime.rst
descriptor.rst
dict.rst Correct name of 'defaultobj' parameter in PyDict_SetDefault() signature. (GH-11929) 2019-02-25 16:52:40 +02:00
exceptions.rst Document the surprising sideeffect PyErr_Print(). (#12081) 2019-02-27 15:27:32 -08:00
file.rst
float.rst
function.rst
gcsupport.rst
gen.rst
import.rst
index.rst Introduce support for documenting which C API elements are not part of the stable/limited API. 2013-10-12 19:54:30 +02:00
init.rst bpo-36427: Document that PyEval_RestoreThread and PyGILState_Ensure can terminate the calling thread (GH-12541) 2019-04-13 17:23:24 +01:00
intro.rst Doc: define PY_SSIZE_T_CLEAN always (GH-12794) 2019-04-13 10:46:21 +09:00
iter.rst
iterator.rst Migrate to Sphinx 1.0 C language constructs. 2010-10-06 10:11:56 +00:00
list.rst
long.rst bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952) 2019-02-25 17:57:58 +02:00
mapping.rst bpo-35461: Document C API functions which suppress exceptions. (GH-11119) 2018-12-18 13:57:17 +02:00
marshal.rst
memory.rst bpo-36389: Change PyMem_SetupDebugHooks() constants (GH-12782) 2019-04-11 13:01:15 +02:00
memoryview.rst
method.rst
module.rst
none.rst
number.rst bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952) 2019-02-25 17:57:58 +02:00
objbuffer.rst bpo-36185: Fix typo in Doc/c-api/objbuffer.rst. (GH-12204) 2019-03-07 07:16:41 +02:00
object.rst bpo-35461: Document C API functions which suppress exceptions. (GH-11119) 2018-12-18 13:57:17 +02:00
objimpl.rst
refcounting.rst
reflection.rst
sequence.rst
set.rst
slice.rst
stable.rst
structures.rst
sys.rst bpo-31904: Add encoding support for VxWorks RTOS (GH-12051) 2019-03-04 10:02:06 +01:00
tuple.rst Fix documented signatures for C API functions. (GH-11236) 2018-12-19 15:31:40 +02:00
type.rst
typeobj.rst Correct "inplace" with "in-place" (GH-10480) 2019-04-08 18:14:43 +09:00
unicode.rst bpo-31904: Add encoding support for VxWorks RTOS (GH-12051) 2019-03-04 10:02:06 +01:00
utilities.rst
veryhigh.rst bpo-20844: open script file with "rb" mode (GH-12616) 2019-04-01 18:35:20 +09:00
weakref.rst