• Home
Name Date Size #Lines LOC

..--

cpython/07-Sep-2024-4,6432,441

internal/07-Sep-2024-5,6083,865

Python.hD07-Sep-20243.1 KiB149118

README.rstD07-Sep-2024344 138

abstract.hD07-Sep-202430.7 KiB874173

bltinmodule.hD07-Sep-2024264 1512

boolobject.hD07-Sep-20241.2 KiB4422

bytearrayobject.hD07-Sep-20241.4 KiB4725

bytesobject.hD07-Sep-20242.5 KiB7040

cellobject.hD07-Sep-2024720 3022

ceval.hD07-Sep-20245.6 KiB15960

classobject.hD07-Sep-20241.6 KiB5837

code.hD07-Sep-2024318 2115

codecs.hD07-Sep-20246.9 KiB24997

compile.hD07-Sep-2024520 2619

complexobject.hD07-Sep-20241.8 KiB7048

context.hD07-Sep-20241.9 KiB8232

datetime.hD07-Sep-20249.4 KiB268157

descrobject.hD07-Sep-20242.9 KiB10985

dictobject.hD07-Sep-20243.8 KiB9859

dynamic_annotations.hD07-Sep-202421.9 KiB500225

enumobject.hD07-Sep-2024253 1811

errcode.hD07-Sep-20241.5 KiB3725

eval.hD07-Sep-2024831 2820

exports.hD07-Sep-20241.1 KiB3122

fileobject.hD07-Sep-20241.5 KiB5035

fileutils.hD07-Sep-2024508 2722

floatobject.hD07-Sep-20244.3 KiB11951

frameobject.hD07-Sep-2024337 2115

funcobject.hD07-Sep-20244.2 KiB11175

genericaliasobject.hD07-Sep-2024334 1511

genobject.hD07-Sep-20243.3 KiB10167

import.hD07-Sep-20243 KiB9990

interpreteridobject.hD07-Sep-2024334 1814

intrcheck.hD07-Sep-2024772 3124

iterobject.hD07-Sep-2024593 2818

listobject.hD07-Sep-20241.7 KiB5331

longintrepr.hD07-Sep-20243.7 KiB10041

longobject.hD07-Sep-20248.4 KiB221122

marshal.hD07-Sep-2024803 2921

memoryobject.hD07-Sep-20242.7 KiB7354

methodobject.hD07-Sep-20244 KiB11764

modsupport.hD07-Sep-202410.1 KiB264175

moduleobject.hD07-Sep-20242.4 KiB9776

namespaceobject.hD07-Sep-2024349 2013

object.hD07-Sep-202427.7 KiB750348

objimpl.hD07-Sep-20248.2 KiB21667

opcode.hD07-Sep-20245.4 KiB173161

osdefs.hD07-Sep-2024737 5238

osmodule.hD07-Sep-2024291 1812

patchlevel.hD07-Sep-20241.3 KiB3615

py_curses.hD07-Sep-20242.4 KiB10061

pycapsule.hD07-Sep-20241.7 KiB6028

pydtrace.dD07-Sep-20241,008 2319

pydtrace.hD07-Sep-20242.4 KiB6037

pyerrors.hD07-Sep-202412.1 KiB325242

pyexpat.hD07-Sep-20242.4 KiB5644

pyframe.hD07-Sep-2024466 2312

pyhash.hD07-Sep-20244.1 KiB14571

pylifecycle.hD07-Sep-20242 KiB7547

pymacconfig.hD07-Sep-20242.9 KiB10364

pymacro.hD07-Sep-20244.8 KiB13372

pymath.hD07-Sep-20248.1 KiB231116

pymem.hD07-Sep-20243.8 KiB10532

pyport.hD07-Sep-202430.9 KiB890433

pystate.hD07-Sep-20245.1 KiB15155

pystrcmp.hD07-Sep-2024436 2418

pystrhex.hD07-Sep-2024849 2315

pystrtod.hD07-Sep-20241.4 KiB4629

pythonrun.hD07-Sep-20241.1 KiB4526

pythread.hD07-Sep-20245.8 KiB17090

rangeobject.hD07-Sep-2024628 2813

setobject.hD07-Sep-20243.3 KiB11156

sliceobject.hD07-Sep-20242.5 KiB6647

structmember.hD07-Sep-20242 KiB7644

structseq.hD07-Sep-20241.4 KiB5035

sysmodule.hD07-Sep-20241.2 KiB4231

token.hD07-Sep-20242.6 KiB9886

traceback.hD07-Sep-2024584 2718

tracemalloc.hD07-Sep-20241.1 KiB3915

tupleobject.hD07-Sep-20241.6 KiB4725

typeslots.hD07-Sep-20242.4 KiB9590

unicodeobject.hD07-Sep-202435.3 KiB1,054420

warnings.hD07-Sep-20241.7 KiB6857

weakrefobject.hD07-Sep-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