Skip to content
Branch: 3.5
Find file History
Pull request Compare This branch is 452 commits ahead, 11011 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 Issue #27332: Fixed the type of the first argument of module-level fu… Jul 7, 2016
Python-ast.c bpo-31095: fix potential crash during GC (GH-2974) (#3196) Sep 26, 2017
README Issue #18093: Factor out the programs that embed the runtime Jul 25, 2014
_warnings.c Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicod… Nov 16, 2016
asdl.c Issue #22207: Fix "comparison between signed and unsigned integers" w… Aug 17, 2014
ast.c Issue #28715: Added error checks for PyUnicode_AsUTF8(). Nov 20, 2016
bltinmodule.c [3.5] bpo-8256: Fixed possible failing or crashing input() (#642) Mar 12, 2017
ceval.c bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1530) ( May 10, 2017
ceval_gil.h Use Py_uintptr_t for atomic pointers Jan 22, 2016
codecs.c Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc Apr 15, 2016
compile.c Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicod… Nov 16, 2016
condvar.h Issue #27895: Spelling fixes (Contributed by Ville Skyttä). Sep 7, 2016
dtoa.c Fix compiler warning in dtoa.c Mar 18, 2015
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 PEP 489: Multi-phase extension module initialization May 23, 2015
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 PEP 489: Multi-phase extension module initialization May 23, 2015
dynload_stub.c Issue #13959: Re-implement imp.get_suffixes() in Lib/imp.py. May 4, 2012
dynload_win.c [3.5] bpo-13617: Reject embedded null characters in wchar* strings. (G… Jun 28, 2017
errors.c Issue #25677: Correct syntax error caret for indented blocks. Dec 11, 2016
fileutils.c [3.5] bpo-13617: Reject embedded null characters in wchar* strings. (G… Jun 28, 2017
formatter_unicode.c improve type-safe of and prevent double-frees in get_locale_info (#28… Sep 14, 2016
frozen.c Issue #23911: Move path-based bootstrap code to a separate frozen mod… May 3, 2015
frozenmain.c merge 3.4 (#22633) Feb 14, 2015
future.c Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicod… Nov 16, 2016
getargs.c Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicod… Nov 16, 2016
getcompiler.c The GCC version is loooooooooong; put it on a new line. Sep 5, 2000
getcopyright.c Version bump & copyright year update for 3.5.7rc1. Mar 4, 2019
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 #24791: Fix grammar regression for call syntax: 'g(*a or b)'. Aug 5, 2015
import.c [3.5] Backport bpo-30876 (GH-2639), bpo-18018 and bpo-26367. (#2677) Jul 23, 2017
importdl.c Issue #28715: Added error checks for PyUnicode_AsUTF8(). Nov 20, 2016
importdl.h PEP 489: Multi-phase extension module initialization May 23, 2015
importlib.h [3.5] Backport bpo-30876 (GH-2639), bpo-18018 and bpo-26367. (#2677) Jul 23, 2017
importlib_external.h [3.5] bpo-29537: Tolerate legacy invalid bytecode (#169) Mar 8, 2017
makeopcodetargets.py excise the remains of STOP_CODE, which hasn't done anything useful fo… Jul 18, 2011
marshal.c bpo-29746: Update marshal docs to Python 3. (#547) (#630) Mar 12, 2017
modsupport.c Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with… May 20, 2016
mysnprintf.c Recorded merge of revisions 81032 via svnmerge from May 9, 2010
mystrtoul.c Issue #1772673: The type of `char*` arguments now changed to `const c… Oct 19, 2013
opcode_targets.h Issue #24400: Introduce a distinct type for 'async def' coroutines. Jun 22, 2015
peephole.c Issue #27076: Doc, comment and tests spelling fixes May 26, 2016
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 Issue #20162: Fix an alignment issue in the siphash24() hash function… Feb 1, 2014
pylifecycle.c bpo-30225: Fix is_valid_fd() on macOS Tiger (#1443) (#1450) May 4, 2017
pymath.c Issue 24366: Indent code (thanks to li4ick for reporting). Jun 2, 2015
pystate.c Issue #27587: Move null pointer check earlier in _PyState_AddModule() Aug 22, 2016
pystrcmp.c Recorded merge of revisions 81032 via svnmerge from May 9, 2010
pystrhex.c Silence a gcc "may be used uninitialized" compiler warning. Not true. Apr 26, 2015
pystrtod.c Removed duplicated words in in comments and docs. Dec 1, 2014
pythonrun.c [3.5] bpo-29537: Tolerate legacy invalid bytecode (#169) Mar 8, 2017
pytime.c pytime.c: rename pygettimeofday_new() to pygettimeofday() Nov 10, 2015
random.c Issue #29157: Prefer getrandom() over getentropy() Jan 9, 2017
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 Fix null pointer dereferencing in structmember.c PyMember_SetOne() fo… Sep 11, 2012
symtable.c Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicod… Nov 16, 2016
sysmodule.c [3.5] bpo-30567: Fix refleak in sys.getwindowsversion (GH-1940) (#1971) Jun 6, 2017
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 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. Apr 17, 2016
thread_pthread.h [3.5] bpo-30765: Avoid blocking when PyThread_acquire_lock() is asked… Jun 26, 2017
traceback.c Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and ex… Oct 18, 2016

README

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