Skip to content
Branch: master
Find file History
Permalink
Type Name Latest commit message Commit time
..
Failed to load latest commit information.
asyncio bpo-35246: fix support for path-like args in asyncio subprocess (GH-1… May 29, 2019
collections bpo-25652: Fix __rmod__ of UserString (GH-13326) May 21, 2019
concurrent bpo-35279: reduce default max_workers of ThreadPoolExecutor (GH-13618) May 28, 2019
ctypes bpo-36946: Fix possible signed integer overflow when handling slices. ( May 17, 2019
curses bpo-36542: Allow to overwrite the signature for Python functions. (GH… May 6, 2019
dbm bpo-36232: Improve error message on dbm.open() when the db doesn't ex… Apr 29, 2019
distutils bpo-21536: On Cygwin, C extensions must be linked with libpython (GH-… May 24, 2019
email bpo-27737: Allow whitespace only headers encoding (#13478) May 23, 2019
encodings bpo-36778: cp65001 encoding becomes an alias to utf_8 (GH-13230) May 10, 2019
ensurepip bpo-35807: Upgrade ensurepip bundled pip and setuptools (GH-12189) Mar 6, 2019
html bpo-30629: Remove second call of str.lower() in html.parser.parse_end… Jun 17, 2017
http bpo-36793: Remove unneeded __str__ definitions. (GH-13081) May 6, 2019
idlelib bpo-37039: IDLE - zoomheight fixes (GH-13576) May 27, 2019
importlib bpo-34632: Add importlib.metadata (GH-12547) May 24, 2019
json json.tool: use stdin and stdout in default cmdlne arguments (GH-11992) May 14, 2019
lib2to3 bpo-23896: Add a grammar where exec isn't a stmt (#13272) May 20, 2019
logging bpo-36015: Handle StreamHandler representaton of stream with an integ… May 7, 2019
msilib bpo-34251: Restore msilib.Win64 to preserve compatibility (GH-8510) Jul 28, 2018
multiprocessing bpo-33725: multiprocessing uses spawn by default on macOS (GH-13603) May 28, 2019
pydoc_data Python 3.8.0a4 May 6, 2019
site-packages Issue #29283: Delete accidentally added Lib/site-packages/README Jan 30, 2017
sqlite3 bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. ( Dec 17, 2018
test bpo-22454: Add shlex.join() (the opposite of shlex.split()) (GH-7605) May 29, 2019
tkinter bpo-25451: Add transparency methods to tkinter.PhotoImage. (GH-10406) Apr 5, 2019
turtledemo turtledemo/penrose.py: remove unused clock() calls (GH-10033) Oct 24, 2018
unittest bpo-37075: Fix string concatenation in assert_has_awaits error message ( May 29, 2019
urllib bpo-35397: Remove deprecation and document urllib.parse.unwrap (GH-11481 May 27, 2019
venv bpo-34144: Fix of venv acvtivate.bat for win 10 (GH-8321) Apr 10, 2019
wsgiref bpo-8138: Initialize wsgiref's SimpleServer as single-threaded (GH-12977 May 24, 2019
xml bpo-36831: Do not apply default namespace to unprefixed attributes in… May 9, 2019
xmlrpc bpo-36793: Remove unneeded __str__ definitions. (GH-13081) May 6, 2019
__future__.py bpo-35526: make __future__.barry_as_FLUFL mandatory for Python 4.0 (#… Dec 19, 2018
__phello__.foo.py Fix the frozen bytecode for __hello__ (betcha didn't know that existed Oct 18, 2001
_bootlocale.py bpo-29240: PEP 540: Add a new UTF-8 Mode (#855) Dec 13, 2017
_collections_abc.py bpo-34427: Fix infinite loop when calling MutableSequence.extend() on… Aug 30, 2018
_compat_pickle.py bpo-35224: PEP 572 Implementation (#10497) Jan 24, 2019
_compression.py Issue #23529: Limit the size of decompressed data when reading from Apr 10, 2015
_dummy_thread.py Revert "bpo-36084: Add native thread ID to threading.Thread objects (G… May 21, 2019
_markupbase.py #13576: add tests about the handling of (possibly broken) condcoms. Dec 19, 2011
_osx_support.py bpo-35257: Avoid leaking LTO linker flags into distutils (GH-10900) Dec 19, 2018
_py_abc.py bpo-33018: Improve issubclass() error checking and message. (GH-5944) Mar 22, 2018
_pydecimal.py bpo-36793: Remove unneeded __str__ definitions. (GH-13081) May 6, 2019
_pyio.py bpo-37054, _pyio: Fix BytesIO and TextIOWrapper __del__() (GH-13601) May 27, 2019
_sitebuiltins.py #9364: Improve the text printed by help(pydoc) and help(help). Apr 19, 2014
_strptime.py bpo-33541: Remove unused __pad function (GH-4377) May 20, 2018
_threading_local.py Delete a broken threading.local example (#5870) Feb 25, 2018
_weakrefset.py bpo-36949: Implement __repr__ on WeakSet (GH-13415) May 20, 2019
abc.py bpo-35609: Remove examples for deprecated decorators in the abc modul… Dec 31, 2018
aifc.py bpo-32056: Improve exceptions in aifc, wave and sunau. (GH-5951) Mar 18, 2018
antigravity.py Change the xkcd link in comment over https. (GH-5452) Sep 14, 2018
argparse.py bpo-23378: Add an extend action to argparse (GH-13305) May 21, 2019
ast.py bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086) Mar 7, 2019
asynchat.py Issue #25002: Back out asyncore/asynchat deprecation. Oct 26, 2016
asyncore.py bpo-36793: Remove unneeded __str__ definitions. (GH-13081) May 6, 2019
base64.py bpo-34164: Fix handling of incorrect padding in base64.b32decode(). (G… Jul 24, 2018
bdb.py bpo-36542: Allow to overwrite the signature for Python functions. (GH… May 6, 2019
binhex.py Issue #23865: close() methods in multiple modules now are idempotent … Apr 10, 2015
bisect.py remove duplicate code in biscet (GH-1270) Apr 8, 2019
bz2.py bpo-35128: Fix spacing issues in warning.warn() messages. (GH-10268) Nov 1, 2018
cProfile.py bpo-36542: Allow to overwrite the signature for Python functions. (GH… May 6, 2019
calendar.py Closes bpo-28281: Remove year (1-9999) limits on the weekday() functi… Oct 26, 2017
cgi.py bpo-35028: cgi: Fix max_num_fields off by one error (GH-9973) Oct 23, 2018
cgitb.py bpo-33311: Do not display parameters displayed in parentheses for mod… May 9, 2018
chunk.py bpo-29762: More use "raise from None". (#569) Apr 5, 2017
cmd.py Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) Jul 4, 2013
code.py bpo-30166: Import command-line parsing modules only when needed. (#1293) May 4, 2017
codecs.py bpo-33482: fix codecs.StreamRecoder.writelines (GH-6779) May 22, 2019
codeop.py Merged revisions 75472 via svnmerge from Oct 18, 2009
colorsys.py Issue #14323: Expanded the number of digits in the coefficients for the Aug 6, 2013
compileall.py bpo-36786: Run compileall in parallel during "make install" (GH-13078) May 15, 2019
configparser.py fix typo in configparser doc (GH-12154) Mar 4, 2019
contextlib.py bpo-36542: Allow to overwrite the signature for Python functions. (GH… May 6, 2019
contextvars.py bpo-32436: Implement PEP 567 (#5027) Jan 23, 2018
copy.py bpo-11572: Make minor improvements to copy module (GH-8208) Jul 9, 2018
copyreg.py bpo-33138: Change standard error message for non-pickleable and non-c… Oct 31, 2018
crypt.py bpo-31702: Allow to specify rounds for SHA-2 hashing in crypt.mksalt(… Nov 16, 2017
csv.py bpo-27497: Add return value to csv.DictWriter.writeheader (GH-12306) May 10, 2019
dataclasses.py bpo-35960: Fix dataclasses.field throwing away empty metadata. (GH-1… Feb 12, 2019
datetime.py bpo-36004: Add date.fromisocalendar (GH-11888) Apr 29, 2019
decimal.py Whitespace. Sep 10, 2014
difflib.py Revert "bpo-35603: Escape table header of make_table output that can … Jan 2, 2019
dis.py bpo-36540: PEP 570 -- Implementation (GH-12701) Apr 29, 2019
doctest.py bpo-36793: Remove unneeded __str__ definitions. (GH-13081) May 6, 2019
dummy_threading.py Restore dummy_threading and _dummy_thread, but deprecate them (bpo-31… Sep 18, 2017
enum.py bpo-35899: Fix Enum handling of empty and weird strings (GH-11891) Mar 3, 2019
filecmp.py shallow defaults to 'True' not '1' (closes #21355) Apr 26, 2014
fileinput.py bpo-36952: Remove the bufsize parameter in fileinput.input(). (GH-13400) May 20, 2019
fnmatch.py bpo-32775: Fix regular expression warnings in fnmatch. (#5583) Feb 9, 2018
formatter.py Issue #25407: Drop the mention of the formatter module being removed Oct 16, 2015
fractions.py bpo-36625: Remove obsolete comments from docstrings in fractions modu… Apr 15, 2019
ftplib.py bpo-35934: Add socket.create_server() utility function (GH-11784) Apr 8, 2019
functools.py bpo-36772 Allow lru_cache to be used as decorator without making a fu… May 26, 2019
genericpath.py bpo-33721: Make some os.path functions and pathlib.Path methods be t… Sep 18, 2018
getopt.py Issue #25523: Correct "a" article to "an" article Nov 2, 2015
getpass.py getpass: update docstrings (#49) Feb 12, 2017
gettext.py bpo-36239: Skip comments in gettext infos (GH-12255) May 9, 2019
glob.py Issue #27998: Removed workarounds for supporting bytes paths on Windo… Oct 5, 2016
gzip.py bpo-6584: Add a BadGzipFile exception to the gzip module. (GH-13022) May 13, 2019
hashlib.py bpo-33729: Fix issues with arguments parsing in hashlib. (GH-8346) Jul 31, 2018
heapq.py bpo-34149: Behavior of the min/max with key=None (GH-8328) Jul 24, 2018
hmac.py bpo-33604: Remove deprecated HMAC default value marked for removal in… Sep 10, 2018
imaplib.py bpo-36348: IMAP4.logout() doesn't ignore exc (GH-12411) Apr 15, 2019
imghdr.py Issue #28228: imghdr now supports pathlib Oct 1, 2016
imp.py closes bpo-34056: Always return bytes from _HackedGetData.get_data(). ( Jul 7, 2018
inspect.py bpo-36751: Undeprecate getfullargspec (GH-13245) May 16, 2019
io.py bpo-36842: Implement PEP 578 (GH-12613) May 23, 2019
ipaddress.py bpo-36845: validate integer network prefix when constructing IP netwo… May 14, 2019
keyword.py bpo-36143: Regenerate Lib/keyword.py from the Grammar and Tokens file… Mar 25, 2019
linecache.py Issue #23838: linecache now clears the cache and returns an empty res… Apr 1, 2015
locale.py Remove mojibake in the locale aliases mapping. (GH-6716) May 6, 2018
lzma.py Issue #28229: lzma module now supports pathlib Oct 4, 2016
mailbox.py bpo-31522: mailbox.get_string: pass `from_` parameter to `get_bytes` (#… Oct 19, 2018
mailcap.py #14977: Make mailcap respect the order of the lines in the mailcap file. Sep 10, 2016
mimetypes.py bpo-34926: Make mimetypes.guess_type accept os.PathLike objects (GH-9777 Oct 10, 2018
modulefinder.py bpo-37032: Add CodeType.replace() method (GH-13542) May 24, 2019
netrc.py bpo-28334: netrc() now uses expanduser() to find .netrc file (GH-4537) Nov 25, 2017
nntplib.py bpo-29762: More use "raise from None". (#569) Apr 5, 2017
ntpath.py bpo-30427: eliminate redundant type checks in os.path.normcase() (GH-… Mar 28, 2019
nturl2path.py bpo-29836: Remove nturl2path from test_sundry and amend the module do… Mar 17, 2017
numbers.py Fix miscellaneous typos (#4275) Nov 5, 2017
opcode.py bpo-33041: Rework compiling an "async for" loop. (#6142) Mar 23, 2018
operator.py Issue #24379: Revert the operator.subscript patch (dccc4e63aef5) pend… Nov 2, 2015
optparse.py bpo-34605: Avoid master/slave terms (GH-9101) Sep 7, 2018
os.py bpo-36085: Enable better DLL resolution on Windows (GH-12302) Mar 29, 2019
pathlib.py bpo-36035: fix Path.rglob for broken links (GH-11988) May 21, 2019
pdb.py bpo-36969: Make PDB args command display positional only arguments (G… May 24, 2019
pickle.py bpo-36785: PEP 574 implementation (GH-7076) May 26, 2019
pickletools.py bpo-36785: PEP 574 implementation (GH-7076) May 26, 2019
pipes.py Merge doc changes from 3.2 (#10454, #12298) Sep 1, 2011
pkgutil.py closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575) Dec 9, 2017
platform.py bpo-36766: Typos in docs and code comments (GH-13116) May 6, 2019
plistlib.py bpo-26707: Enable plistlib to read UID keys. (GH-12153) May 15, 2019
poplib.py bpo-35128: Fix spacing issues in warning.warn() messages. (GH-10268) Nov 1, 2018
posixpath.py bpo-35755: Remove current directory from posixpath.defpath (GH-11586) Apr 17, 2019
pprint.py bpo-30670: Add pp function to the pprint module (GH-11769) Mar 22, 2019
profile.py bpo-36542: Allow to overwrite the signature for Python functions. (GH… May 6, 2019
pstats.py bpo-36766: Typos in docs and code comments (GH-13116) May 6, 2019
pty.py Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) Jul 4, 2013
py_compile.py bpo-22640: Add silent mode to py_compile.compile() (GH-12976) May 28, 2019
pyclbr.py bpo-36298: Raise ModuleNotFoundError in pyclbr when a module can't be… Mar 22, 2019
pydoc.py bpo-36045: builtins.help() now prefixes `async` for async functions (G… May 24, 2019
queue.py bpo-14976: Reentrant simple queue (#3346) Jan 15, 2018
quopri.py Issue #23681: Fixed Python 2 to 3 poring bugs. Mar 20, 2015
random.py bpo-36559: random module: optimize sha512 import (GH-12742) Apr 10, 2019
re.py bpo-34681: Rename class Pattern in sre_parse to State. (GH-9310) Sep 18, 2018
reprlib.py bpo-31370: Remove support for threads-less builds (#3385) Sep 7, 2017
rlcompleter.py Merge 3.5 Feb 4, 2016
runpy.py [backport to 3.5] - issue26896 - Disambiguate uses of "importer" with… Sep 7, 2016
sched.py bpo-31370: Remove support for threads-less builds (#3385) Sep 7, 2017
secrets.py Issue #29061: secrets.randbelow() would hang with a negative input Dec 30, 2016
selectors.py bpo-30624 remaining bare except (#2108) Jun 12, 2017
shelve.py Fix misleading docsting of shelve.open(). (GH-6427) Apr 9, 2018
shlex.py bpo-22454: Add shlex.join() (the opposite of shlex.split()) (GH-7605) May 29, 2019
shutil.py bpo-24538: Fix bug in shutil involving the copying of xattrs to read-… May 10, 2019
signal.py bpo-34282: Fix Enum._convert shadowing members named _convert (GH-8568) Sep 12, 2018
site.py bpo-35872 and bpo-35873: Clears __PYVENV_LAUNCHER__ variable (GH-11745) Feb 4, 2019
smtpd.py Issue #27110: Add smtpd.SMTPChannel to __all__, by Jacek Kołodziej Jun 6, 2016
smtplib.py bpo-35128: Fix spacing issues in warning.warn() messages. (GH-10268) Nov 1, 2018
sndhdr.py bpo-31985: Deprecate openfp in aifc, sunau, and wave (#4344) Nov 10, 2017
socket.py BPO-17561: set create_server backlog default to None (GH-12735) Apr 9, 2019
socketserver.py Fix typo in socketserver docstring (GH-11252) Dec 21, 2018
sre_compile.py Simplify flags checks in sre_compile.py. (GH-9718) Oct 5, 2018
sre_constants.py bpo-36793: Remove unneeded __str__ definitions. (GH-13081) May 6, 2019
sre_parse.py bpo-34681: Rename class Pattern in sre_parse to State. (GH-9310) Sep 18, 2018
ssl.py Simplify SSLSocket / SSLObject doc string (GH-9972) May 17, 2019
stat.py closes bpo-34353: Add sockets to stat.filemode fallback python implem… Aug 10, 2018
statistics.py bpo-36018: Make "seed" into a keyword only argument (GH-12921) Apr 23, 2019
string.py bpo-31672: Restore the former behavior when override flags in Templat… Jan 4, 2018
stringprep.py Merged revisions 55007-55179 via svnmerge from May 7, 2007
struct.py Issue #17804: New function ``struct.iter_unpack`` allows for streamin… Apr 26, 2013
subprocess.py bpo-31961: Fix support of path-like executables in subprocess. (GH-5914) May 28, 2019
sunau.py bpo-32056: Improve exceptions in aifc, wave and sunau. (GH-5951) Mar 18, 2018
symbol.py bpo-35766: Merge typed_ast back into CPython (GH-11645) Jan 31, 2019
symtable.py bpo-34983: Expose symtable.Symbol.is_nonlocal() in the symtable module ( Oct 20, 2018
sysconfig.py bpo-35920: Windows 10 ARM32 platform support (GH-11774) Apr 25, 2019
tabnanny.py bpo-30166: Import command-line parsing modules only when needed. (#1293) May 4, 2017
tarfile.py Add missing docstrings for TarInfo objects (#12555) Mar 27, 2019
telnetlib.py bpo-30397: Add re.Pattern and re.Match. (#1646) Oct 4, 2017
tempfile.py Clean up code which checked presence of os.{stat,lstat,chmod} (#11643) Feb 25, 2019
textwrap.py bpo-30620: Remove dead lines from textwrap.dedent (GH-2064) Jun 16, 2017
this.py Fix most trivially-findable print statements. Feb 9, 2007
threading.py bpo-1230540: Add threading.excepthook() (GH-13515) May 27, 2019
timeit.py bpo-28240: timeit: Update repeat() doc (GH-7419) Jun 6, 2018
token.py bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086) Mar 7, 2019
tokenize.py bpo-36766: Typos in docs and code comments (GH-13116) May 6, 2019
trace.py bpo-36542: Allow to overwrite the signature for Python functions. (GH… May 6, 2019
traceback.py bpo-26502: Implement FrameSummary.__len__() (GH-8632) Sep 10, 2018
tracemalloc.py bpo-32121: Add most_recent_first parameter to tracemalloc.Traceback.f… Nov 29, 2017
tty.py final round of __all__ lists (I hope) - skipped urllib2 because Moshe… Mar 1, 2001
turtle.py bpo-36766: Typos in docs and code comments (GH-13116) May 6, 2019
types.py bpo-37032: Add CodeType.replace() method (GH-13542) May 24, 2019
typing.py bpo-37058: PEP 544: Add Protocol to typing module (GH-13585) May 28, 2019
uu.py bpo-33687: Fix call to os.chmod() in uu.decode() (GH-7282) Jan 17, 2019
uuid.py bpo-35701: Added __weakref__ slot to uuid.UUID (GH-11570) Jan 17, 2019
warnings.py bpo-35178: Fix warnings._formatwarnmsg() (GH-12033) Mar 1, 2019
wave.py bpo-32056: Improve exceptions in aifc, wave and sunau. (GH-5951) Mar 18, 2018
weakref.py bpo-36542: Allow to overwrite the signature for Python functions. (GH… May 6, 2019
webbrowser.py bpo-35308: Fix regression where BROWSER env var is not respected. (GH… Nov 26, 2018
xdrlib.py Issue #11694: Raise ConversionError in xdrlib as documented Oct 10, 2014
zipapp.py bpo-31638: Add compression support to zipapp (GH-3819) Sep 29, 2017
zipfile.py bpo-22102: Fixes zip files with disks set to 0 (GH-5985) May 28, 2019
zipimport.py bpo-36842: Implement PEP 578 (GH-12613) May 23, 2019
You can’t perform that action at this time.