You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Victor Stinner a15e260b70
bpo-40170: Add _PyIndex_Check() internal function (GH-19426)
6 years ago
..
clinic bpo-39489: Remove COUNT_ALLOCS special build (GH-18259) 6 years ago
Python-ast.c bpo-40141: Add line and column information to ast.keyword nodes (GH-19283) 6 years ago
README Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
_warnings.c bpo-32591: _PyErr_WarnUnawaitedCoroutine() sets source (GH-19247) 6 years ago
asdl.c replace PY_SIZE_MAX with SIZE_MAX 9 years ago
ast.c bpo-40141: Include the value in the column position for keyword AST nodes (GH-19348) 6 years ago
ast_opt.c bpo-39220: Do not optimise annotation if 'from __future__ import annotations' is used (GH-17866) 6 years ago
ast_unparse.c bpo-34822: Simplify AST for subscription. (GH-9605) 6 years ago
bltinmodule.c bpo-39245: Switch to public API for Vectorcall (GH-18460) 6 years ago
bootstrap_hash.c Fix typos in comments, docs and test names (#15018) 6 years ago
ceval.c bpo-40170: Add _PyIndex_Check() internal function (GH-19426) 6 years ago
ceval_gil.h bpo-40010: Pass tstate to ceval GIL functions (GH-19077) 6 years ago
codecs.c bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978) 6 years ago
compile.c bpo-40147: Fix a compiler warning on Windows in Python/compile.c (GH-19389) 6 years ago
condvar.h Typo fix: "throuhgh" should be "through". (GH-16704) 6 years ago
context.c bpo-38979: fix ContextVar "__class_getitem__" method (GH-17497) 6 years ago
dtoa.c bpo-35081: Move dtoa.h header to the internal C API (GH-18489) 6 years ago
dup2.c bpo-32150: Expand tabs to spaces in C files. (#4583) 8 years ago
dynamic_annotations.c bpo-32241: Add the const qualifire to declarations of umodifiable strings. (#4748) 8 years ago
dynload_aix.c bpo-37752: Delete redundant Py_CHARMASK in normalizestring() (GH-15095) 6 years ago
dynload_dl.c Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
dynload_hpux.c bpo-36900: Fix compilation on HP-UX (GH-13614) 7 years ago
dynload_shlib.c bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978) 6 years ago
dynload_stub.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
dynload_win.c bpo-39553: Delete HAVE_SXS protected code (GH-18356) 6 years ago
errors.c bpo-38644: Use _PySys_Audit(): pass tstate explicitly (GH-19183) 6 years ago
fileutils.c bpo-38353: Add subfunctions to getpath.c (GH-16572) 6 years ago
formatter_unicode.c bpo-38249: Expand Py_UNREACHABLE() to __builtin_unreachable() in the release mode. (GH-16329) 6 years ago
frozen.c bpo-36540: PEP 570 -- Implementation (GH-12701) 7 years ago
frozenmain.c bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157) 6 years ago
future.c bpo-34683: Make SyntaxError column offsets consistently 1-indexed (gh-9338) 7 years ago
getargs.c bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980) 6 years ago
getcompiler.c closes bpo-31696: don't mention GCC in sys.version when building with clang (#3891) 8 years ago
getcopyright.c Bring Python into the next decade. (GH-17801) 6 years ago
getopt.c Delete stale comment in Python/getopt.c. (GH-14719) 6 years ago
getplatform.c bpo-32150: Expand tabs to spaces in C files. (#4583) 8 years ago
getversion.c bpo-32150: Expand tabs to spaces in C files. (#4583) 8 years ago
graminit.c bpo-39702: Relax grammar restrictions on decorators (PEP 614) (GH-18570) 6 years ago
hamt.c bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521) 6 years ago
import.c bpo-39943: Remove unnecessary casts in import.c that remove constness (GH-19209) 6 years ago
importdl.c bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601) 6 years ago
importdl.h Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
importlib.h bpo-39987: Simplify setting lineno in the compiler. (GH-19037) 6 years ago
importlib_external.h bpo-40050: Fix importlib._bootstrap_external (GH-19135) 6 years ago
importlib_zipimport.h bpo-39987: Simplify setting lineno in the compiler. (GH-19037) 6 years ago
initconfig.c bpo-22490: Remove __PYVENV_LAUNCHER__ from environment during launch (GH-9516) 6 years ago
makeopcodetargets.py makeopcodetargets.py: we need to import Lib/opcode.py 10 years ago
marshal.c bpo-39943: Clean up marshal.c. (GH-19236) 6 years ago
modsupport.c bpo-40170: Add _PyIndex_Check() internal function (GH-19426) 6 years ago
mysnprintf.c bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157) 6 years ago
mystrtoul.c bpo-37752: Delete redundant Py_CHARMASK in normalizestring() (GH-15095) 6 years ago
opcode_targets.h bpo-39320: Handle unpacking of **values in compiler (GH-18141) 6 years ago
pathconfig.c bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157) 6 years ago
peephole.c bpo-38249: Expand Py_UNREACHABLE() to __builtin_unreachable() in the release mode. (GH-16329) 6 years ago
preconfig.c bpo-38304: Remove PyConfig.struct_size (GH-16500) (GH-16508) 6 years ago
pyarena.c bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264) 7 years ago
pyctype.c Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k. Should fix Windows buildbot errors. 17 years ago
pyfpe.c bpo-29137: Remove fpectl module (#4789) 8 years ago
pyhash.c closes bpo-40184: Only define pysiphash if the hash algorithm is SIPHASH24. (GH-19369) 6 years ago
pylifecycle.c Document most common signals (GH-19245) 6 years ago
pymath.c bpo-31031: Unify duplicate bits_in_digit and bit_length (GH-2866) 6 years ago
pystate.c bpo-38644: Make tstate more explicit inside pystate.c (GH-19182) 6 years ago
pystrcmp.c Untabify C files. Will watch buildbots. 16 years ago
pystrhex.c Fix unused variable and signed/unsigned warnings (GH-15537) 6 years ago
pystrtod.c bpo-35081: Move dtoa.h header to the internal C API (GH-18489) 6 years ago
pythonrun.c bpo-38644: Use _PySys_Audit(): pass tstate explicitly (GH-19183) 6 years ago
pytime.c bpo-38249: Expand Py_UNREACHABLE() to __builtin_unreachable() in the release mode. (GH-16329) 6 years ago
strdup.c bpo-36623: Clean parser headers and include files (GH-12253) 7 years ago
structmember.c Added the const qualifier to char* variables that refer to readonly internal 9 years ago
symtable.c bpo-34822: Simplify AST for subscription. (GH-9605) 6 years ago
sysmodule.c bpo-38644: Add _PySys_Audit() which takes tstate (GH-19180) 6 years ago
thread.c bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978) 6 years ago
thread_nt.h bpo-39847: EnterNonRecursiveMutex() uses GetTickCount64() (GH-18780) 6 years ago
thread_pthread.h bpo-40089: Add _at_fork_reinit() method to locks (GH-19195) 6 years ago
traceback.c bpo-39946: Remove _PyThreadState_GetFrame (GH-19094) 6 years ago
wordcode_helpers.h bpo-31338 (#3374) 8 years ago

README

Miscellaneous source files for the main Python shared library