cpython/Lib
Toshio Kuratomi 997443c14c Fix so that test.test_distutils can be executed by unittest and not just regrtest (GH-13480) 2020-01-27 07:08:39 -05:00
..
asyncio bpo-38356: Fix ThreadedChildWatcher thread leak in test_asyncio (GH-16552) 2020-01-12 03:02:50 -08:00
collections
concurrent
ctypes bpo-16575: Disabled checks for union types being passed by value. (GH-17960) 2020-01-12 08:54:00 +00:00
curses
dbm
distutils
email
encodings
ensurepip
html
http bpo-35292: Avoid calling mimetypes.init when http.server is imported (GH-17822) 2020-01-08 10:28:14 -08:00
idlelib bpo-39388: IDLE: Fix bug when cancelling out of configdialog (GH-18068) 2020-01-25 04:00:54 -05:00
importlib bpo-39320: Handle unpacking of **values in compiler (GH-18141) 2020-01-27 09:57:45 +00:00
json bpo-39377: json: Remove the encoding option. (GH-18075) 2020-01-20 13:54:00 +09:00
lib2to3 bpo-39313: Add an option to RefactoringTool for using exec as a function (GH-17967) 2020-01-12 14:13:31 -08:00
logging bpo-39292: Add missing syslog facility codes. (GH-17945) 2020-01-10 19:37:48 +00:00
msilib
multiprocessing
pydoc_data Python 3.9.0a3 2020-01-24 22:05:07 +01:00
site-packages
sqlite3
test Fix so that test.test_distutils can be executed by unittest and not just regrtest (GH-13480) 2020-01-27 07:08:39 -05:00
tkinter
turtledemo
unittest bpo-25597: Ensure wraps' return value is used for magic methods in MagicMock (#16029) 2020-01-27 06:48:15 +00:00
urllib
venv bpo-38901: Allow setting a venv's prompt to the basename of the current directory. (GH-17946) 2020-01-14 20:49:30 +00:00
wsgiref
xml
xmlrpc
__future__.py
__phello__.foo.py
_aix_support.py
_bootlocale.py
_collections_abc.py
_compat_pickle.py
_compression.py
_markupbase.py
_osx_support.py
_py_abc.py
_pydecimal.py
_pyio.py
_sitebuiltins.py
_strptime.py Fix outdated comment in _strptime.py (GH-17929) 2020-01-12 12:53:00 -08:00
_threading_local.py
_weakrefset.py
abc.py
aifc.py
antigravity.py
argparse.py
ast.py
asynchat.py
asyncore.py
base64.py bpo-39351: Remove base64.encodestring() (GH-18022) 2020-01-16 10:24:16 +01:00
bdb.py
binhex.py bpo-39353: Deprecate the binhex module (GH-18025) 2020-01-22 20:44:22 +01:00
bisect.py
bz2.py bpo-39357: Update bz2 docstring: remove buffering (GH-18036) 2020-01-17 13:50:39 +01:00
cProfile.py
calendar.py
cgi.py
cgitb.py
chunk.py
cmd.py
code.py Fix documentation in code.py (GH-17988) 2020-01-15 01:17:25 +05:30
codecs.py
codeop.py
colorsys.py
compileall.py
configparser.py
contextlib.py
contextvars.py
copy.py bpo-38293: Allow shallow and deep copying of property objects (GH-16438) 2020-01-12 09:41:49 -08:00
copyreg.py
crypt.py
csv.py
dataclasses.py
datetime.py
decimal.py
difflib.py
dis.py
doctest.py
enum.py
filecmp.py
fileinput.py
fnmatch.py
formatter.py
fractions.py bpo-39350: Remove deprecated fractions.gcd() (GH-18021) 2020-01-16 11:02:51 +01:00
ftplib.py bpo-39259: ftplib.FTP/FTP_TLS now reject timeout = 0 (GH-17959) 2020-01-13 20:34:34 +01:00
functools.py bpo-17005: Add a class to perform topological sorting to the standard library (GH-11583) 2020-01-23 15:29:52 +00:00
genericpath.py
getopt.py
getpass.py
gettext.py
glob.py
gzip.py bpo-39389: gzip: fix compression level metadata (GH-18077) 2020-01-21 13:25:24 +02:00
hashlib.py
heapq.py
hmac.py
imaplib.py bpo-38615: Add timeout parameter for IMAP4 and IMAP4_SSL constructor (GH-17203) 2020-01-07 18:28:10 +01:00
imghdr.py
imp.py
inspect.py
io.py
ipaddress.py
keyword.py
linecache.py Fix linecache.py add lazycache to __all__ and use dict.clear to clear the cache (GH-4641) 2020-01-25 21:07:40 -05:00
locale.py bpo-38536: locale: Remove trailing space in formatted currency (GH-16864) 2020-01-20 12:45:50 +09:00
lzma.py
mailbox.py
mailcap.py
mimetypes.py bpo-39299: Add more tests for mimetypes and its cli. (GH-17949) 2020-01-13 20:09:36 +05:30
modulefinder.py
netrc.py
nntplib.py bpo-39366: Remove xpath() and xgtitle() methods of NNTP (GH-18035) 2020-01-23 00:59:43 +03:00
ntpath.py
nturl2path.py
numbers.py
opcode.py bpo-39320: Handle unpacking of **values in compiler (GH-18141) 2020-01-27 09:57:45 +00:00
operator.py
optparse.py
os.py bpo-39395: putenv() and unsetenv() always available (GH-18135) 2020-01-24 14:05:48 +01:00
pathlib.py
pdb.py
pickle.py bpo-39426: Fix outdated default and highest protocols in docs (GH-18154) 2020-01-24 02:03:22 -08:00
pickletools.py
pipes.py
pkgutil.py
platform.py
plistlib.py
poplib.py bpo-39259: poplib now rejects timeout = 0 (GH-17912) 2020-01-10 15:34:05 +01:00
posixpath.py
pprint.py
profile.py
pstats.py bpo-37958: Adding get_profile_dict to pstats (GH-15495) 2020-01-15 14:51:54 -08:00
pty.py
py_compile.py
pyclbr.py
pydoc.py
queue.py
quopri.py
random.py
re.py
reprlib.py
rlcompleter.py
runpy.py
sched.py
secrets.py
selectors.py
shelve.py
shlex.py
shutil.py bpo-39390 shutil: fix argument types for ignore callback (GH-18122) 2020-01-24 15:51:16 +01:00
signal.py
site.py
smtpd.py
smtplib.py bpo-39329: Add timeout parameter for smtplib.LMTP constructor (GH-17998) 2020-01-14 22:42:09 +01:00
sndhdr.py
socket.py Fix host in address of socket.create_server example. (GH-17706) 2020-01-11 10:46:30 +05:30
socketserver.py
sre_compile.py
sre_constants.py
sre_parse.py
ssl.py
stat.py
statistics.py
string.py
stringprep.py
struct.py
subprocess.py bpo-35182: fix communicate() crash after child closes its pipes (GH-17020) (GH-18117) 2020-01-22 15:28:31 -08:00
sunau.py
symbol.py
symtable.py
sysconfig.py
tabnanny.py
tarfile.py bpo-39430: Fix race condition in lazy imports in tarfile. (GH-18161) 2020-01-24 09:55:52 -08:00
telnetlib.py
tempfile.py
textwrap.py
this.py
threading.py
timeit.py
token.py
tokenize.py
trace.py
traceback.py
tracemalloc.py
tty.py
turtle.py
types.py
typing.py
uu.py
uuid.py
warnings.py
wave.py
weakref.py
webbrowser.py Fix typo from base to based (GH-18055) 2020-01-19 05:29:42 -05:00
xdrlib.py
zipapp.py
zipfile.py bpo-39356, zipfile: Remove code handling DeprecationWarning (GH-18027) 2020-01-17 15:17:48 +01:00
zipimport.py