Skip to content
Branch: 3.6
Find file History
Pull request Compare This branch is 2197 commits ahead, 8638 commits behind master.
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
..
Failed to load latest commit information.
clinic [3.6] bpo-29526: Add reference to help('FORMATTING') in format() buil… Sep 11, 2017
Python-ast.c bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH… May 31, 2018
README Issue #18093: Factor out the programs that embed the runtime Jul 25, 2014
_warnings.c [3.6] bpo-35454: Fix miscellaneous minor issues in error handling. (G… Dec 11, 2018
asdl.c replace PY_SIZE_MAX with SIZE_MAX Sep 7, 2016
ast.c bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fix… Dec 7, 2018
bltinmodule.c
ceval.c bpo-35444: Fix error handling when fail to look up builtin "getattr". ( Dec 11, 2018
ceval_gil.h replace Py_(u)intptr_t with the c99 standard types Sep 6, 2016
codecs.c
compile.c Fix an incorrect check in compiler_try_except(). (GH-9810) Oct 12, 2018
condvar.h replace PY_LONG_LONG with long long Sep 6, 2016
dtoa.c [3.6] bpo-30923: Silence fall-through warnings included in -Wextra si… Sep 12, 2017
dup2.c Merged revisions 85236 via svnmerge from Oct 5, 2010
dynamic_annotations.c Make (most of) Python's tests pass under Thread Sanitizer. May 3, 2010
dynload_aix.c
dynload_dl.c Issue #24268: Fix import naming when loading extension modules. Patch… May 23, 2015
dynload_hpux.c Issue #24268: Fix import naming when loading extension modules. Patch… May 23, 2015
dynload_next.c Issue #24268: Fix import naming when loading extension modules. Patch… May 23, 2015
dynload_shlib.c
dynload_stub.c Issue #13959: Re-implement imp.get_suffixes() in Lib/imp.py. May 4, 2012
dynload_win.c [3.6] bpo-13617: Reject embedded null characters in wchar* strings. (G… Jun 28, 2017
errors.c bpo-34503: Fix refleak in PyErr_SetObject() (GH-8934) Aug 26, 2018
fileutils.c bpo-28604: Fix localeconv() for different LC_MONETARY (GH-10606) (GH-… Nov 20, 2018
formatter_unicode.c
frozen.c Issue #26647: Python interpreter now uses 16-bit wordcode instead of … May 24, 2016
frozenmain.c Issue #5319: New Py_FinalizeEx() API to exit with status 120 on failure Nov 30, 2015
future.c Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringA… Nov 20, 2016
getargs.c bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192) Jul 11, 2018
getcompiler.c [3.6] remove tabs from getcompiler.c (GH-3892) (#3893) Oct 5, 2017
getcopyright.c
getopt.c #16306: report only the first unknown option and add more tests. Patc… Nov 23, 2012
getplatform.c REMOVED all CWI, CNRI and BeOpen copyright markings. Sep 1, 2000
getversion.c Merged revisions 83352,83355-83358,83362,83366,83368-83369 via svnmer… Aug 1, 2010
graminit.c Issue #28008: Implement PEP 530 -- asynchronous comprehensions. Sep 9, 2016
import.c
importdl.c [3.6] bpo-31315: Fix an assertion failure in imp.create_dynamic(), wh… Sep 19, 2017
importdl.h PEP 489: Multi-phase extension module initialization May 23, 2015
importlib.h Revert "[3.6] bpo-32303 - Consistency fixes for namespace loaders (GH… Feb 26, 2018
importlib_external.h
makeopcodetargets.py makeopcodetargets.py: we need to import Lib/opcode.py Mar 26, 2016
marshal.c bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fix… Dec 7, 2018
modsupport.c va_end() all va_copy()ed va_lists. Sep 21, 2016
mysnprintf.c Recorded merge of revisions 81032 via svnmerge from May 9, 2010
mystrtoul.c Issue #25923: Added the const qualifier to static constant arrays. Dec 25, 2015
opcode_targets.h Issue #28257: Improved error message when pass a non-iterable as Oct 2, 2016
peephole.c bpo-35193: Fix an off by one error in the RETURN_VALUE case. (GH-10418)… Nov 9, 2018
pyarena.c Issue #18203: Replace malloc() with PyMem_Malloc() to allocate arena … Jul 7, 2013
pyctype.c Include files missed in r72044. Apr 27, 2009
pyfpe.c Removed unintentional trailing spaces in non-external and non-generat… Mar 18, 2015
pyhash.c bpo-31849: Fix warning in pyhash.c (GH-6799) Jun 4, 2018
pylifecycle.c [3.6] bpo-35454: Fix miscellaneous minor issues in error handling. (G… Dec 11, 2018
pymath.c bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503) Nov 13, 2018
pystate.c bpo-35414: Add a missing Py_INCREF(Py_None) in PyState_RemoveModule(). ( Dec 5, 2018
pystrcmp.c Recorded merge of revisions 81032 via svnmerge from May 9, 2010
pystrhex.c
pystrtod.c bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fix… Dec 7, 2018
pythonrun.c bpo-34084: Fix setting an error message for the "Barry as BDFL" easte… Jul 23, 2018
pytime.c [3.6] bpo-31786: Make functions in the select module blocking when ti… Oct 18, 2017
random.c bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503) Nov 13, 2018
sigcheck.c REMOVED all CWI, CNRI and BeOpen copyright markings. Sep 1, 2000
strdup.c Issue #18722: Remove uses of the "register" keyword in C code. Aug 13, 2013
structmember.c Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringA… Nov 20, 2016
symtable.c Add a missed PyErr_NoMemory() in symtable_new(). (GH-10576) Nov 16, 2018
sysmodule.c bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (G… Dec 8, 2018
thread.c Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 Nov 2, 2015
thread_foobar.h Issue #21312: Update the thread_foobar.h template file to include new… Apr 28, 2014
thread_nt.h Fix typo in thread_nt.h code comment (GH-5211) (GH-5226) Jan 18, 2018
thread_pthread.h bpo-33015: Fix UB in pthread PyThread_start_new_thread (GH-6008) (GH-… Nov 30, 2018
traceback.c [3.6] bpo-33029: Fix signatures of getter and setter functions. (GH-1… Nov 27, 2018
wordcode_helpers.h [3.6] bpo-30923: Silence fall-through warnings included in -Wextra si… Sep 12, 2017

README

Miscellaneous source files for the main Python shared library
You can’t perform that action at this time.