• Home
Name
Date
Size
#Lines
LOC

..--

cpython/12-May-2024-4,6432,441

internal/12-May-2024-5,5693,857

Python.hD12-May-20243.1 KiB149118

README.rstD12-May-2024344 138

abstract.hD12-May-202430.7 KiB874173

bltinmodule.hD12-May-2024264 1512

boolobject.hD12-May-20241.2 KiB4422

bytearrayobject.hD12-May-20241.4 KiB4725

bytesobject.hD12-May-20242.5 KiB7040

cellobject.hD12-May-2024720 3022

ceval.hD12-May-20245.6 KiB15960

classobject.hD12-May-20241.6 KiB5837

code.hD12-May-2024318 2115

codecs.hD12-May-20246.9 KiB24997

compile.hD12-May-2024520 2619

complexobject.hD12-May-20241.8 KiB7048

context.hD12-May-20241.9 KiB8232

datetime.hD12-May-20249.4 KiB268157

descrobject.hD12-May-20242.9 KiB10985

dictobject.hD12-May-20243.8 KiB9859

dynamic_annotations.hD12-May-202421.9 KiB500225

enumobject.hD12-May-2024253 1811

errcode.hD12-May-20241.5 KiB3725

eval.hD12-May-2024831 2820

exports.hD12-May-20241.1 KiB3122

fileobject.hD12-May-20241.5 KiB5035

fileutils.hD12-May-2024508 2722

floatobject.hD12-May-20244.3 KiB11951

frameobject.hD12-May-2024337 2115

funcobject.hD12-May-20244.2 KiB11175

genericaliasobject.hD12-May-2024334 1511

genobject.hD12-May-20243.3 KiB10167

import.hD12-May-20243 KiB9990

interpreteridobject.hD12-May-2024334 1814

intrcheck.hD12-May-2024772 3124

iterobject.hD12-May-2024593 2818

listobject.hD12-May-20241.7 KiB5331

longintrepr.hD12-May-20243.7 KiB10041

longobject.hD12-May-20248.4 KiB221122

marshal.hD12-May-2024803 2921

memoryobject.hD12-May-20242.7 KiB7354

methodobject.hD12-May-20244 KiB11764

modsupport.hD12-May-202410.1 KiB264175

moduleobject.hD12-May-20242.4 KiB9776

namespaceobject.hD12-May-2024349 2013

object.hD12-May-202427.7 KiB750348

objimpl.hD12-May-20248.2 KiB21667

opcode.hD12-May-20245.4 KiB173161

osdefs.hD12-May-2024737 5238

osmodule.hD12-May-2024291 1812

patchlevel.hD12-May-20241.3 KiB3615

py_curses.hD12-May-20242.4 KiB10061

pycapsule.hD12-May-20241.7 KiB6028

pydtrace.dD12-May-20241,008 2319

pydtrace.hD12-May-20242.4 KiB6037

pyerrors.hD12-May-202412.1 KiB325242

pyexpat.hD12-May-20242.4 KiB5644

pyframe.hD12-May-2024466 2312

pyhash.hD12-May-20244.1 KiB14571

pylifecycle.hD12-May-20242 KiB7547

pymacconfig.hD12-May-20242.9 KiB10364

pymacro.hD12-May-20244.8 KiB13372

pymath.hD12-May-20248.1 KiB231116

pymem.hD12-May-20243.8 KiB10532

pyport.hD12-May-202430.9 KiB890433

pystate.hD12-May-20245.1 KiB15155

pystrcmp.hD12-May-2024436 2418

pystrhex.hD12-May-2024849 2315

pystrtod.hD12-May-20241.4 KiB4629

pythonrun.hD12-May-20241.1 KiB4526

pythread.hD12-May-20245.8 KiB17090

rangeobject.hD12-May-2024628 2813

setobject.hD12-May-20243.3 KiB11156

sliceobject.hD12-May-20242.5 KiB6647

structmember.hD12-May-20242 KiB7644

structseq.hD12-May-20241.4 KiB5035

sysmodule.hD12-May-20241.2 KiB4231

token.hD12-May-20242.6 KiB9886

traceback.hD12-May-2024584 2718

tracemalloc.hD12-May-20241.1 KiB3915

tupleobject.hD12-May-20241.6 KiB4725

typeslots.hD12-May-20242.4 KiB9590

unicodeobject.hD12-May-202435.3 KiB1,054420

warnings.hD12-May-20241.7 KiB6857

weakrefobject.hD12-May-20242.8 KiB8744

README.rst

1The Python C API
2================
3
4The C API is divided into three sections:
5
61. ``Include/``: Limited API
72. ``Include/cpython/``: CPython implementation details
83. ``Include/internal/``: The internal API
9
10Information on changing the C API is available `in the developer guide`_
11
12.. _in the developer guide: https://devguide.python.org/c-api/
13