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.
 
 
 
 
 
 
Mark Shannon 2116909b3e
Minor fixes to specialization stats. (GH-27457)
5 years ago
..
clinic bpo-20201: variadic arguments support for AC (GH-18609) 5 years ago
Python-ast.c bpo-11105: Do not crash when compiling recursive ASTs (GH-20594) 5 years ago
README Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
_warnings.c bpo-44590: Lazily allocate frame objects (GH-27077) 5 years ago
adaptive.md Add file describing how to add or modify specialized families of instructions. (GH-26954) 5 years ago
asdl.c bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933) 5 years ago
ast.c bpo-43897: Reject "_" captures and top-level MatchStar in the AST validator (GH-27432) 5 years ago
ast_opt.c bpo-28307: Tests and fixes for optimization of C-style formatting (GH-26318) 5 years ago
ast_unparse.c bpo-43892: Make match patterns explicit in the AST (GH-25585) 5 years ago
bltinmodule.c bpo-20201: variadic arguments support for AC (GH-18609) 5 years ago
bootstrap_hash.c bpo-44611: Use BCryptGenRandom instead of CryptGenRandom on Windows (GH-27168) 5 years ago
ceval.c Minor fixes to specialization stats. (GH-27457) 5 years ago
ceval_gil.h bpo-43268: Pass interp rather than tstate to internal functions (GH-24580) 5 years ago
codecs.c bpo-42157: unicodedata avoids references to UCD_Type (GH-22990) 5 years ago
compile.c bpo-44600: Fix line numbers for pattern matching cleanup code (GH-27346) 5 years ago
condvar.h bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378) 5 years ago
context.c bpo-43268: Pass interp rather than tstate to internal functions (GH-24580) 5 years ago
dtoa.c bpo-40780: Fix failure of _Py_dg_dtoa to remove trailing zeros (GH-20435) 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_hpux.c bpo-41894: Fix UnicodeDecodeError while loading native module (GH-22466) 5 years ago
dynload_shlib.c bpo-43895: Remove an unnecessary cache of shared object handles (GH-25487) 5 years ago
dynload_stub.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
dynload_win.c bpo-36346: Make using the legacy Unicode C API optional (GH-21437) 6 years ago
errors.c bpo-44590: Lazily allocate frame objects (GH-27077) 5 years ago
fileutils.c bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris (GH-25096) 5 years ago
formatter_unicode.c bpo-28146: Fix a confusing error message in str.format() (GH-24213) 5 years ago
frame.c bpo-44590: Lazily allocate frame objects (GH-27077) 5 years ago
frozen.c bpo-43372: Use _freeze_importlib for regen-frozen. (GH-24759) 5 years ago
frozen_hello.h bpo-44530: Add co_qualname field to PyCodeObject (GH-26941) 5 years ago
frozenmain.c bpo-44131: Py_FrozenMain() uses PyConfig_SetBytesArgv() (GH-26201) 5 years ago
future.c bpo-38605: Revert making 'from __future__ import annotations' the default (GH-25490) 5 years ago
getargs.c bpo-20291: Fix MSVC warnings in getargs.c (GH-27211) 5 years ago
getcompiler.c closes bpo-43278: remove unnecessary leading '\n' from COMPILER when build with GCC/Clang (GH-24606) 5 years ago
getcopyright.c Bring Python into the new year. (GH-24036) 5 years ago
getopt.c bpo-40527: Fix command line argument parsing (GH-19955) 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
hamt.c bpo-29882: Add _Py_popcount32() function (GH-20518) 6 years ago
hashtable.c bpo-41061: Fix incorrect expressions in hashtable (GH-21028) 6 years ago
import.c bpo-44441: _PyImport_Fini2() resets PyImport_Inittab (GH-26874) 5 years ago
importdl.c bpo-1635741: Fix ref leak in _PyWarnings_Init() error path (GH-23151) 5 years ago
importdl.h Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
importlib.h bpo-44717: improve AttributeError on circular imports of submodules (GH-27299) 5 years ago
importlib_external.h bpo-44626: Merge basic blocks earlier to enable better handling of exit blocks without line numbers (GH-27138) 5 years ago
importlib_zipimport.h bpo-44616: Mark all clean up instructions at end of named exception block as artificial (GH-27109) 5 years ago
initconfig.c bpo-43950: Add option to opt-out of PEP-657 (GH-27023) 5 years ago
makeopcodetargets.py bpo-44337: Port LOAD_ATTR to PEP 659 adaptive interpreter (GH-26595) 5 years ago
marshal.c bpo-44530: Add co_qualname field to PyCodeObject (GH-26941) 5 years ago
modsupport.c bpo-1635741: Add PyModule_AddObjectRef() function (GH-23122) 5 years ago
mysnprintf.c bpo-36020: Require vsnprintf() to build Python (GH-20899) 6 years ago
mystrtoul.c bpo-37752: Delete redundant Py_CHARMASK in normalizestring() (GH-15095) 6 years ago
opcode_targets.h bpo-26280: Port BINARY_SUBSCR to PEP 659 adaptive interpreter (GH-27043) 5 years ago
pathconfig.c bpo-42260: Fix _PyConfig_Read() if compute_path_config=0 (GH-23220) 5 years ago
preconfig.c bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481) 5 years ago
pyarena.c bpo-43244: Remove the pyarena.h header (GH-25007) 5 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 bpo-43475: Fix worst case collision behavior for NaN instances (GH-25493) 5 years ago
pylifecycle.c bpo-32280: Store _PyRuntime in a named section (GH-4802) 5 years ago
pymath.c bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503) 7 years ago
pystate.c bpo-44590: Lazily allocate frame objects (GH-27077) 5 years ago
pystrcmp.c bpo-41524: fix pointer bug in PyOS_mystr{n}icmp (GH-21845) 5 years ago
pystrhex.c bpo-40313: speed up bytes.hex() (GH-19594) 6 years ago
pystrtod.c bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586) 5 years ago
pythonrun.c bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525) 5 years ago
pytime.c bpo-37205: time.time() cannot fail with fatal error (GH-23314) 5 years ago
specialize.c Minor fixes to specialization stats. (GH-27457) 5 years ago
stdlib_module_names.h bpo-44353: Implement typing.NewType __call__ method in C (#27262) 5 years ago
structmember.c bpo-44655: Include the name of the type in unset __slots__ attribute errors (GH-27199) 5 years ago
suggestions.c bpo-44590: Lazily allocate frame objects (GH-27077) 5 years ago
symtable.c bpo-33346: Allow async comprehensions inside implicit async comprehensions (GH-6766) 5 years ago
sysmodule.c bpo-44590: Lazily allocate frame objects (GH-27077) 5 years ago
thread.c bpo-40268: Remove explicit pythread.h includes (#19529) 6 years ago
thread_nt.h bpo-41299: Reduce lag in Windows threading timeouts by using a higher precision time source (GH-26568) 5 years ago
thread_pthread.h bpo-31904: Define THREAD_STACK_SIZE for VxWorks (GH-23718) 5 years ago
traceback.c bpo-44590: Lazily allocate frame objects (GH-27077) 5 years ago
wordcode_helpers.h bpo-31338 (#3374) 8 years ago

README

Miscellaneous source files for the main Python shared library