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.
 
 
 
 
 
 
Benjamin Peterson ea62a4bd54
Fix -Wstrict-prototypes warning in thread_pthread.h. (GH-21477)
6 years ago
..
clinic bpo-40471: Fix grammar typo in 'issubclass' docstring (GH-19847) 6 years ago
Python-ast.c bpo-41204: Fix compiler warning in ast_type_init() (GH-21307) 6 years ago
README Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
_warnings.c bpo-39465: Use _PyInterpreterState_GET() (GH-20788) 6 years ago
asdl.c replace PY_SIZE_MAX with SIZE_MAX 9 years ago
ast.c bpo-40939: Remove the old parser (Part 2) (GH-21005) 6 years ago
ast_opt.c bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503) 6 years ago
ast_unparse.c bpo-40663: Correctly handle annotations with subscripts in ast_unparse.c (GH-20156) 6 years ago
bltinmodule.c bpo-41078: Fix bltinmodule.c with Py_TRACE_REFS (GH-21058) 6 years ago
bootstrap_hash.c bpo-40910: Export Py_GetArgcArgv() function (GH-20721) 6 years ago
ceval.c bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056) 6 years ago
ceval_gil.h bpo-40513: Per-interpreter GIL (GH-19943) 6 years ago
codecs.c bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) 6 years ago
compile.c bpo-41218: Only mark async code with CO_COROUTINE. (#21357) 6 years ago
condvar.h Typo fix: "throuhgh" should be "through". (GH-16704) 6 years ago
context.c bpo-40521: Fix _PyContext_Fini() (GH-21103) 6 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_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-40268: Add _PyInterpreterState_GetConfig() (GH-19492) 6 years ago
dynload_shlib.c bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) 6 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-40985: Show correct SyntaxError text when last line has a LINECONT (GH-20888) 6 years ago
fileutils.c bpo-36346: Make using the legacy Unicode C API optional (GH-21437) 6 years ago
formatter_unicode.c bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345) 6 years ago
frozen.c bpo-36540: PEP 570 -- Implementation (GH-12701) 7 years ago
frozenmain.c bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) 6 years ago
future.c bpo-40939: Remove the old parser (Part 2) (GH-21005) 6 years ago
getargs.c bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056) 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 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-40232: _PyImport_ReInitLock() can now safely use its lock (GH-20597) 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-41076: Pre-feed the parser with the f-string expression location (GH-21054) 6 years ago
importlib_external.h bpo-41076: Pre-feed the parser with the f-string expression location (GH-21054) 6 years ago
importlib_zipimport.h bpo-39791 native hooks for importlib.resources.files (GH-20576) 6 years ago
initconfig.c bpo-29778: test_embed tests the path configuration (GH-21306) 6 years ago
makeopcodetargets.py makeopcodetargets.py: we need to import Lib/opcode.py 10 years ago
marshal.c bpo-41180: Audit code.__new__ when unmarshalling (GH-21271) 6 years ago
modsupport.c bpo-40943: PY_SSIZE_T_CLEAN required for '#' formats (GH-20784) 6 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-39320: Handle unpacking of **values in compiler (GH-18141) 6 years ago
pathconfig.c bpo-29778: test_embed tests the path configuration (GH-21306) 6 years ago
peephole.c bpo-40939: Remove the old parser (Part 2) (GH-21005) 6 years ago
preconfig.c _PyPreConfig_Read() decodes argv at each iteration (GH-20786) 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 bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781) 6 years ago
pylifecycle.c bpo-41162: Clear audit hooks later during finalization (GH-21222) 6 years ago
pymath.c bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503) 7 years ago
pystate.c bpo-40834: Fix truncate when sending str object with channel (GH-20555) 6 years ago
pystrcmp.c Untabify C files. Will watch buildbots. 16 years ago
pystrhex.c bpo-40313: speed up bytes.hex() (GH-19594) 6 years ago
pystrtod.c bpo-35081: Move dtoa.h header to the internal C API (GH-18489) 6 years ago
pythonrun.c bpo-40939: Rename PyPegen* functions to PyParser* (GH-21016) 6 years ago
pytime.c bpo-40650: Include winsock2.h in pytime.c, instead of a full windows.h (GH-20137) 6 years ago
strdup.c bpo-36623: Clean parser headers and include files (GH-12253) 7 years ago
structmember.c bpo-40268: Remove unused structmember.h includes (GH-19530) 6 years ago
symtable.c bpo-40268: Remove unused structmember.h includes (GH-19530) 6 years ago
sysmodule.c bpo-23427: Add sys.orig_argv attribute (GH-20729) 6 years ago
thread.c bpo-40268: Remove explicit pythread.h includes (#19529) 6 years ago
thread_nt.h bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) 6 years ago
thread_pthread.h Fix -Wstrict-prototypes warning in thread_pthread.h. (GH-21477) 6 years ago
traceback.c bpo-40421: Add PyFrame_GetBack() function (GH-19765) 6 years ago
wordcode_helpers.h bpo-31338 (#3374) 8 years ago

README

Miscellaneous source files for the main Python shared library