• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

cpython/H08-Dec-2021-5,1302,611

internal/H08-Dec-2021-6,7644,573

Python.hH A D08-Dec-20212.7 KiB10891

README.rstH A D08-Dec-2021344 138

abstract.hH A D08-Dec-202130.7 KiB874173

bltinmodule.hH A D08-Dec-2021264 1512

boolobject.hH A D08-Dec-20211.2 KiB4422

bytearrayobject.hH A D08-Dec-20211.4 KiB4524

bytesobject.hH A D08-Dec-20212.6 KiB7040

ceval.hH A D08-Dec-20216.1 KiB16968

code.hH A D08-Dec-2021317 2115

codecs.hH A D08-Dec-20216.9 KiB24997

compile.hH A D08-Dec-2021520 2619

complexobject.hH A D08-Dec-20211.8 KiB7048

datetime.hH A D08-Dec-20219.4 KiB268157

descrobject.hH A D08-Dec-20212.9 KiB10985

dictobject.hH A D08-Dec-20213.8 KiB9859

dynamic_annotations.hH A D08-Dec-202121.9 KiB500225

enumobject.hH A D08-Dec-2021253 1811

errcode.hH A D08-Dec-20211.5 KiB3725

exports.hH A D08-Dec-20211.1 KiB3122

fileobject.hH A D08-Dec-20211.5 KiB5035

fileutils.hH A D08-Dec-2021507 2722

floatobject.hH A D08-Dec-20211.5 KiB5735

frameobject.hH A D08-Dec-2021336 2115

genericaliasobject.hH A D08-Dec-2021334 1511

import.hH A D08-Dec-20213 KiB9990

intrcheck.hH A D08-Dec-2021772 3124

iterobject.hH A D08-Dec-2021593 2818

listobject.hH A D08-Dec-20211.7 KiB5331

longobject.hH A D08-Dec-20213.3 KiB9471

marshal.hH A D08-Dec-2021827 3221

memoryobject.hH A D08-Dec-20212.7 KiB7354

methodobject.hH A D08-Dec-20214.1 KiB11564

modsupport.hH A D08-Dec-202110.5 KiB273182

moduleobject.hH A D08-Dec-20212.4 KiB9776

object.hH A D08-Dec-202128.3 KiB767359

objimpl.hH A D08-Dec-20218.2 KiB21667

opcode.hH A D08-Dec-20218.6 KiB230218

osdefs.hH A D08-Dec-2021737 5238

osmodule.hH A D08-Dec-2021291 1812

patchlevel.hH A D08-Dec-20211.3 KiB3615

py_curses.hH A D08-Dec-20212.4 KiB10061

pycapsule.hH A D08-Dec-20211.7 KiB6028

pydtrace.dH A D08-Dec-20211,008 2319

pydtrace.hH A D08-Dec-20212.4 KiB6037

pyerrors.hH A D08-Dec-202112.3 KiB328245

pyexpat.hH A D08-Dec-20212.4 KiB5644

pyframe.hH A D08-Dec-2021466 2312

pyhash.hH A D08-Dec-20214.1 KiB14572

pylifecycle.hH A D08-Dec-20212.1 KiB7547

pymacconfig.hH A D08-Dec-20212.9 KiB10364

pymacro.hH A D08-Dec-20215 KiB13773

pymath.hH A D08-Dec-20212.4 KiB8044

pymem.hH A D08-Dec-20213.8 KiB10532

pyport.hH A D08-Dec-202126.1 KiB796363

pystate.hH A D08-Dec-20214.8 KiB14355

pystrcmp.hH A D08-Dec-2021436 2418

pystrtod.hH A D08-Dec-20211.4 KiB4629

pythonrun.hH A D08-Dec-20211.1 KiB4526

pythread.hH A D08-Dec-20215.9 KiB17290

rangeobject.hH A D08-Dec-2021628 2813

setobject.hH A D08-Dec-20213.3 KiB11156

sliceobject.hH A D08-Dec-20212.5 KiB6647

structmember.hH A D08-Dec-20212 KiB7644

structseq.hH A D08-Dec-20211.4 KiB5035

sysmodule.hH A D08-Dec-20211.3 KiB4231

token.hH A D08-Dec-20212.6 KiB9886

traceback.hH A D08-Dec-2021583 2718

tracemalloc.hH A D08-Dec-20211.1 KiB3915

tupleobject.hH A D08-Dec-20211.6 KiB4725

typeslots.hH A D08-Dec-20212.4 KiB9590

unicodeobject.hH A D08-Dec-202135.3 KiB1,054420

warnings.hH A D08-Dec-20211.1 KiB4637

weakrefobject.hH A D08-Dec-20211.2 KiB4331

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