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 5d39e04290
bpo-32030: Rework memory allocators (#4625)
8 years ago
..
clinic bpo-30950: Convert round() to Argument Clinic. (#2740) 8 years ago
Python-ast.c bpo-31572: Get rid of _PyObject_HasAttrId() in the ASDL parser. (#3725) 8 years ago
README Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
_warnings.c bpo-27535: Fix memory leak with warnings ignore (#4489) 8 years ago
asdl.c replace PY_SIZE_MAX with SIZE_MAX 9 years ago
ast.c bpo-32023: Disallow genexprs without parenthesis in class definitions. (#4400) 8 years ago
bltinmodule.c bpo-30950: Convert round() to Argument Clinic. (#2740) 8 years ago
bootstrap_hash.c bpo-32030: Enhance Py_Main() (#4412) 8 years ago
ceval.c bpo-31857: Make the behavior of USE_STACKCHECK deterministic (#4098) 8 years ago
ceval_gil.h bpo-30860: Consolidate stateful runtime globals. (#2594) 8 years ago
codecs.c bpo-30860: Consolidate stateful runtime globals. (#3397) 8 years ago
compile.c Add the const qualifier to "char *" variables that refer to literal strings. (#4370) 8 years ago
condvar.h bpo-30860: Consolidate stateful runtime globals. (#3397) 8 years ago
dtoa.c bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (#3157) 8 years ago
dup2.c bpo-32150: Expand tabs to spaces in C files. (#4583) 8 years ago
dynamic_annotations.c Make (most of) Python's tests pass under Thread Sanitizer. 16 years ago
dynload_aix.c Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
dynload_dl.c Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
dynload_hpux.c Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
dynload_next.c Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
dynload_shlib.c bpo-30860: Consolidate stateful runtime globals. (#3397) 8 years ago
dynload_stub.c Issue #13590: Improve support for OS X Xcode 4: 14 years ago
dynload_win.c [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302) 9 years ago
errors.c bpo-28994: PyErr_NormalizeException() no longer use C stack for recursion. (#2035) 8 years ago
fileutils.c Replace KB unit with KiB (#4293) 8 years ago
formatter_unicode.c bpo-31780: Fix incorrect error message for ',x', ',b', ',o' specs (#4002) 8 years ago
frozen.c Issue #24225: Rename many idlelib/*.py and idlelib/idle_test/test_*.py files. 10 years ago
frozenmain.c bpo-32030: Split Py_Main() into subfunctions (#4399) 8 years ago
future.c bpo-29463: Add docstring field to some AST nodes. (#46) 9 years ago
getargs.c bpo-31373: remove overly strict float range checks (#3486) 8 years ago
getcompiler.c closes bpo-31696: don't mention GCC in sys.version when building with clang (#3891) 8 years ago
getcopyright.c ring in 2017 for Python 9 years ago
getopt.c Issue #25314: store_true and store_false also create appropriate defaults. 14 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-30406: Make async and await proper keywords (#1669) 8 years ago
import.c bpo-32030: Add more options to _PyCoreConfig (#4485) 8 years ago
importdl.c bpo-31315: Fix an assertion failure in imp.create_dynamic(), when spec.name is not a string. (#3257) 8 years ago
importdl.h Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
importlib.h bpo-21720: Restore the Python 2.7 logic in handling a fromlist. (#4118) 8 years ago
importlib_external.h bpo-31709: Update importlib magic (#3906) 8 years ago
makeopcodetargets.py makeopcodetargets.py: we need to import Lib/opcode.py 10 years ago
marshal.c bpo-32011: Revert "Issue #15480: Remove the deprecated and unused TYPE_INT64 code from marshal." (#4381) 8 years ago
modsupport.c bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716) 9 years ago
mysnprintf.c Recorded merge of revisions 81029 via svnmerge from 16 years ago
mystrtoul.c bpo-31370: Remove support for threads-less builds (#3385) 8 years ago
opcode_targets.h Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes. 9 years ago
peephole.c bpo-30501: Make the compiler producing optimized code for condition expressions. (#1851) 9 years ago
pyarena.c Issue #25314: store_true and store_false also create appropriate defaults. 14 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-32150: Expand tabs to spaces in C files. (#4583) 8 years ago
pyhash.c Add the const qualifier to "char *" variables that refer to literal strings. (#4370) 8 years ago
pylifecycle.c bpo-32030: Rework memory allocators (#4625) 8 years ago
pymath.c Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
pystate.c bpo-32030: Rework memory allocators (#4625) 8 years ago
pystrcmp.c Untabify C files. Will watch buildbots. 16 years ago
pystrhex.c bpo-32150: Expand tabs to spaces in C files. (#4583) 8 years ago
pystrtod.c Add the const qualifier to "char *" variables that refer to literal strings. (#4370) 8 years ago
pythonrun.c bpo-32030: Add more options to _PyCoreConfig (#4485) 8 years ago
pytime.c Fix miscellaneous typos (#4275) 8 years ago
strdup.c bpo-32150: Expand tabs to spaces in C files. (#4583) 8 years ago
structmember.c Added the const qualifier to char* variables that refer to readonly internal 9 years ago
symtable.c bpo-28936: Detect lexically first syntax error first (#4097) 8 years ago
sysmodule.c bpo-32030: Split Py_Main() into subfunctions (#4399) 8 years ago
thread.c bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362) 8 years ago
thread_nt.h Replace KB unit with KiB (#4293) 8 years ago
thread_pthread.h Replace KB unit with KiB (#4293) 8 years ago
traceback.c bpo-31949: Fixed several issues in printing tracebacks (PyTraceBack_Print()). (#4289) 8 years ago
wordcode_helpers.h bpo-31338 (#3374) 8 years ago

README

Miscellaneous source files for the main Python shared library