• Home
Name
Date
Size
#Lines
LOC

..--

cpython/03-May-2024-4,6452,443

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

Python.hD03-May-20243.1 KiB149118

README.rstD03-May-2024344 138

abstract.hD03-May-202430.7 KiB874173

bltinmodule.hD03-May-2024264 1512

boolobject.hD03-May-20241.2 KiB4422

bytearrayobject.hD03-May-20241.4 KiB4725

bytesobject.hD03-May-20242.5 KiB7040

cellobject.hD03-May-2024720 3022

ceval.hD03-May-20245.6 KiB15960

classobject.hD03-May-20241.6 KiB5837

code.hD03-May-2024318 2115

codecs.hD03-May-20246.9 KiB24997

compile.hD03-May-2024520 2619

complexobject.hD03-May-20241.8 KiB7048

context.hD03-May-20241.9 KiB8232

datetime.hD03-May-20249.4 KiB268157

descrobject.hD03-May-20242.9 KiB10985

dictobject.hD03-May-20243.8 KiB9859

dynamic_annotations.hD03-May-202421.9 KiB500225

enumobject.hD03-May-2024253 1811

errcode.hD03-May-20241.7 KiB3927

eval.hD03-May-2024831 2820

exports.hD03-May-20241.1 KiB3122

fileobject.hD03-May-20241.5 KiB5035

fileutils.hD03-May-2024508 2722

floatobject.hD03-May-20244.3 KiB11951

frameobject.hD03-May-2024337 2115

funcobject.hD03-May-20244.2 KiB11175

genericaliasobject.hD03-May-2024334 1511

genobject.hD03-May-20243.3 KiB10167

import.hD03-May-20243 KiB9990

interpreteridobject.hD03-May-2024334 1814

intrcheck.hD03-May-2024772 3124

iterobject.hD03-May-2024593 2818

listobject.hD03-May-20241.7 KiB5331

longintrepr.hD03-May-20243.7 KiB10041

longobject.hD03-May-20248.4 KiB221122

marshal.hD03-May-2024803 2921

memoryobject.hD03-May-20242.7 KiB7354

methodobject.hD03-May-20244 KiB11764

modsupport.hD03-May-202410.1 KiB264175

moduleobject.hD03-May-20242.4 KiB9776

namespaceobject.hD03-May-2024349 2013

object.hD03-May-202427.7 KiB750348

objimpl.hD03-May-20248.2 KiB21667

opcode.hD03-May-20245.4 KiB173161

osdefs.hD03-May-2024737 5238

osmodule.hD03-May-2024291 1812

patchlevel.hD03-May-20241.3 KiB3615

py_curses.hD03-May-20242.4 KiB10061

pycapsule.hD03-May-20241.7 KiB6028

pydtrace.dD03-May-20241,008 2319

pydtrace.hD03-May-20242.4 KiB6037

pyerrors.hD03-May-202412.1 KiB325242

pyexpat.hD03-May-20242.4 KiB5644

pyframe.hD03-May-2024466 2312

pyhash.hD03-May-20244.1 KiB14571

pylifecycle.hD03-May-20242 KiB7547

pymacconfig.hD03-May-20242.9 KiB10364

pymacro.hD03-May-20244.8 KiB13372

pymath.hD03-May-20248.1 KiB231116

pymem.hD03-May-20243.8 KiB10532

pyport.hD03-May-202430.9 KiB890433

pystate.hD03-May-20245.1 KiB15155

pystrcmp.hD03-May-2024436 2418

pystrhex.hD03-May-2024849 2315

pystrtod.hD03-May-20241.4 KiB4629

pythonrun.hD03-May-20241.1 KiB4526

pythread.hD03-May-20245.8 KiB17090

rangeobject.hD03-May-2024628 2813

setobject.hD03-May-20243.3 KiB11156

sliceobject.hD03-May-20242.5 KiB6647

structmember.hD03-May-20242 KiB7644

structseq.hD03-May-20241.4 KiB5035

sysmodule.hD03-May-20241.2 KiB4231

token.hD03-May-20242.6 KiB9886

traceback.hD03-May-2024584 2718

tracemalloc.hD03-May-20241.1 KiB3915

tupleobject.hD03-May-20241.6 KiB4725

typeslots.hD03-May-20242.4 KiB9590

unicodeobject.hD03-May-202435.3 KiB1,054420

warnings.hD03-May-20241.7 KiB6857

weakrefobject.hD03-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