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

..28-Nov-2021-

cpython/H28-Nov-2021-4,6162,419

internal/H28-Nov-2021-5,5663,850

Python.hH A D22-Oct-20213.5 KiB163129

README.rstH A D22-Oct-2021344 138

abstract.hH A D22-Oct-202130.7 KiB874173

bltinmodule.hH A D22-Oct-2021264 1512

boolobject.hH A D22-Oct-20211.2 KiB4422

bytearrayobject.hH A D22-Oct-20211.4 KiB4725

bytesobject.hH A D22-Oct-20212.5 KiB7040

cellobject.hH A D22-Oct-2021720 3022

ceval.hH A D22-Oct-20215.6 KiB15960

classobject.hH A D22-Oct-20211.6 KiB5837

code.hH A D22-Oct-2021318 2115

codecs.hH A D22-Oct-20216.9 KiB24997

compile.hH A D22-Oct-2021520 2619

complexobject.hH A D22-Oct-20211.8 KiB7048

context.hH A D22-Oct-20211.9 KiB8232

datetime.hH A D22-Oct-20219.4 KiB268157

descrobject.hH A D22-Oct-20212.9 KiB10985

dictobject.hH A D22-Oct-20213.8 KiB9859

dynamic_annotations.hH A D22-Oct-202121.9 KiB500225

enumobject.hH A D22-Oct-2021253 1811

errcode.hH A D22-Oct-20211.5 KiB3725

eval.hH A D22-Oct-2021831 2820

exports.hH A D22-Oct-20211.1 KiB3122

fileobject.hH A D22-Oct-20211.5 KiB5035

fileutils.hH A D22-Oct-2021508 2722

floatobject.hH A D22-Oct-20214.3 KiB11951

frameobject.hH A D22-Oct-2021337 2115

funcobject.hH A D22-Oct-20214.2 KiB11175

genericaliasobject.hH A D22-Oct-2021334 1511

genobject.hH A D22-Oct-20213.3 KiB10167

import.hH A D22-Oct-20213 KiB9990

interpreteridobject.hH A D22-Oct-2021334 1814

intrcheck.hH A D22-Oct-2021772 3124

iterobject.hH A D22-Oct-2021593 2818

listobject.hH A D22-Oct-20211.7 KiB5331

longintrepr.hH A D22-Oct-20213.7 KiB10041

longobject.hH A D22-Oct-20218.4 KiB221122

marshal.hH A D22-Oct-2021803 2921

memoryobject.hH A D22-Oct-20212.7 KiB7354

methodobject.hH A D22-Oct-20214 KiB11764

modsupport.hH A D22-Oct-202110.1 KiB264175

moduleobject.hH A D22-Oct-20212.4 KiB9776

namespaceobject.hH A D22-Oct-2021349 2013

object.hH A D22-Oct-202127.7 KiB750348

objimpl.hH A D22-Oct-20218.2 KiB21667

opcode.hH A D22-Oct-20215.4 KiB173161

osdefs.hH A D22-Oct-2021737 5238

osmodule.hH A D22-Oct-2021291 1812

patchlevel.hH A D22-Oct-20211.3 KiB3615

py_curses.hH A D22-Oct-20212.4 KiB10061

pycapsule.hH A D22-Oct-20211.7 KiB6028

pydtrace.dH A D22-Oct-20211,008 2319

pydtrace.hH A D22-Oct-20212.4 KiB6037

pyerrors.hH A D22-Oct-202112.1 KiB325242

pyexpat.hH A D22-Oct-20212.4 KiB5644

pyframe.hH A D22-Oct-2021466 2312

pyhash.hH A D22-Oct-20214.1 KiB14571

pylifecycle.hH A D22-Oct-20212 KiB7547

pymacconfig.hH A D22-Oct-20212.9 KiB10364

pymacro.hH A D22-Oct-20214.8 KiB13372

pymath.hH A D22-Oct-20218.1 KiB231116

pymem.hH A D22-Oct-20213.8 KiB10532

pyport.hH A D22-Oct-202130.9 KiB890433

pystate.hH A D22-Oct-20215.1 KiB15155

pystrcmp.hH A D22-Oct-2021436 2418

pystrhex.hH A D22-Oct-2021849 2315

pystrtod.hH A D22-Oct-20211.4 KiB4629

pythonrun.hH A D22-Oct-20211.1 KiB4526

pythread.hH A D22-Oct-20215.8 KiB17090

rangeobject.hH A D22-Oct-2021628 2813

setobject.hH A D22-Oct-20213.3 KiB11156

sliceobject.hH A D22-Oct-20212.5 KiB6647

structmember.hH A D22-Oct-20212 KiB7644

structseq.hH A D22-Oct-20211.4 KiB5035

sysmodule.hH A D22-Oct-20211.2 KiB4231

token.hH A D22-Oct-20212.6 KiB9886

traceback.hH A D22-Oct-2021584 2718

tracemalloc.hH A D22-Oct-20211.1 KiB3915

tupleobject.hH A D22-Oct-20211.6 KiB4725

typeslots.hH A D22-Oct-20212.4 KiB9590

unicodeobject.hH A D22-Oct-202135.3 KiB1,054420

warnings.hH A D22-Oct-20211.7 KiB6857

weakrefobject.hH A D22-Oct-20212.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