cpython/Lib
Serhiy Storchaka f37a983102
[3.8] bpo-38005: Fixed comparing and creating of InterpreterID and ChannelID. (GH-15652) (GH-16145)
* Fix a crash in comparing with float (and maybe other crashes).
* They are now never equal to strings and non-integer numbers.
* Comparison with a large number no longer raises OverflowError.
* Arbitrary exceptions no longer silenced in constructors and comparisons.
* TypeError raised in the constructor contains now the name of the type.
* Accept only ChannelID and int-like objects in channel functions.
* Accept only InterpreterId, int-like objects and str in the InterpreterId constructor.
* Accept int-like objects, not just int in interpreter related functions.
(cherry picked from commit bf169915ec)
2019-09-14 19:36:19 +03:00
..
asyncio [3.8] bpo-38148: Add slots to asyncio transports (GH-16077) (GH-16093) 2019-09-13 16:14:55 +03:00
collections
concurrent
ctypes bpo-37140: Fix StructUnionType_paramfunc() (GH-15612) 2019-08-30 05:50:44 -07:00
curses
dbm
distutils bpo-38088: Fixes distutils not finding vcruntime140.dll with only v142 toolset installed (GH-15849) 2019-09-10 15:42:26 +01:00
email [3.8] bpo-37764: Fix infinite loop when parsing unstructured email headers. (GH-15239) (GH-15686) 2019-09-04 18:20:40 -07:00
encodings bpo-34519: Add additional aliases for HP Roman 8 (GH-8956) (GH-15945) 2019-09-11 15:13:54 +01:00
ensurepip
html
http bpo-12144: Handle cookies with expires attribute in CookieJar.make_cookies (GH-13921) 2019-09-13 04:47:51 -07:00
idlelib bpo-38077: IDLE no longer adds 'argv' to the user namespace (GH-15818) 2019-09-09 20:29:01 -07:00
importlib [3.8] bpo-38121: Sync importlib.metadata with 0.22 backport (GH-15993) (GH-16064) 2019-09-12 16:41:31 +01:00
json
lib2to3
logging
msilib
multiprocessing bpo-38092: Reduce overhead when using multiprocessing in a Windows virtual environment (GH-16098) 2019-09-13 09:59:11 -07:00
pydoc_data Python 3.8.0b4 2019-08-29 23:59:20 +02:00
site-packages
sqlite3
test [3.8] bpo-38005: Fixed comparing and creating of InterpreterID and ChannelID. (GH-15652) (GH-16145) 2019-09-14 19:36:19 +03:00
tkinter Fix typos mostly in comments, docs and test names (GH-15209) 2019-08-30 13:42:54 -07:00
turtledemo
unittest bpo-37972: unittest.mock._Call now passes on __getitem__ to the __getattr__ chaining so that call() can be subscriptable (GH-15565) (GH-15965) 2019-09-12 12:52:49 +02:00
urllib bpo-25068: urllib.request.ProxyHandler now lowercases the dict keys (GH-13489) 2019-09-13 07:25:51 -07:00
venv bpo-37885: venv: Don't produce unbound variable warning on deactivate (GH-15973) 2019-09-11 08:55:57 -07:00
wsgiref
xml
xmlrpc bpo-36793: Remove unneeded __str__ definitions. (GH-13081) 2019-05-06 22:29:40 +03:00
__future__.py
__phello__.foo.py
_bootlocale.py
_collections_abc.py
_compat_pickle.py
_compression.py
_dummy_thread.py
_markupbase.py
_osx_support.py
_py_abc.py
_pydecimal.py
_pyio.py
_sitebuiltins.py
_strptime.py
_threading_local.py
_weakrefset.py
abc.py
aifc.py
antigravity.py
argparse.py bpo-37785: Fix xgettext warning in argparse (GH-15161) 2019-09-13 02:45:27 -07:00
ast.py
asynchat.py
asyncore.py
base64.py
bdb.py Fix typos mostly in comments, docs and test names (GH-15209) 2019-08-30 13:42:54 -07:00
binhex.py
bisect.py
bz2.py
cProfile.py
calendar.py
cgi.py bpo-20504 : in cgi.py, fix bug when a multipart/form-data request has… (GH-10638) 2019-09-11 05:09:23 -07:00
cgitb.py
chunk.py
cmd.py
code.py
codecs.py
codeop.py
colorsys.py
compileall.py
configparser.py
contextlib.py
contextvars.py
copy.py
copyreg.py
crypt.py
csv.py
dataclasses.py
datetime.py
decimal.py
difflib.py
dis.py
doctest.py
dummy_threading.py
enum.py
filecmp.py
fileinput.py
fnmatch.py
formatter.py
fractions.py
ftplib.py
functools.py
genericpath.py
getopt.py
getpass.py
gettext.py
glob.py
gzip.py
hashlib.py
heapq.py
hmac.py
imaplib.py
imghdr.py
imp.py
inspect.py bpo-34706: Preserve subclassing in inspect.Signature.from_callable (GH-16108) (GH-16113) 2019-09-13 18:42:35 +01:00
io.py bpo-36842: Implement PEP 578 (GH-12613) 2019-05-23 08:45:22 -07:00
ipaddress.py
keyword.py
linecache.py
locale.py
lzma.py
mailbox.py
mailcap.py
mimetypes.py bpo-37305: add MIME type for Web App Manifest (GH-14199) (#15946) 2019-09-11 15:13:31 +01:00
modulefinder.py
netrc.py
nntplib.py
ntpath.py bpo-38081: Fixes ntpath.realpath('NUL') (GH-15899) 2019-09-11 03:43:30 -07:00
nturl2path.py
numbers.py
opcode.py
operator.py
optparse.py
os.py closes bpo-25461: Update os.walk() docstring to match the online docs. (GH-11836) 2019-09-10 06:21:57 -07:00
pathlib.py bpo-31163: Added return values to pathlib.Path instance's rename and replace methods. (GH-13582) (GH-15944) 2019-09-11 15:12:54 +01:00
pdb.py closes bpo-37803: pdb: fix handling of options (--help / --version) (GH-15193) 2019-09-12 09:05:52 -07:00
pickle.py
pickletools.py
pipes.py
pkgutil.py
platform.py
plistlib.py
poplib.py
posixpath.py
pprint.py
profile.py
pstats.py
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 [3.8] bpo-35168: Make shlex.punctuation_chars read-only (GH-11631) (GH-15927) 2019-09-11 13:39:52 +01:00
shutil.py Clarify that shutil's copy functions can accept path-like values (GH-15141) 2019-09-09 10:18:51 -07:00
signal.py
site.py
smtpd.py
smtplib.py
sndhdr.py
socket.py bpo-11953: Extend table of Windows WSA* error codes (GH-15004) 2019-09-09 03:36:04 -07:00
socketserver.py
sre_compile.py
sre_constants.py
sre_parse.py
ssl.py
stat.py
statistics.py [3.8] bpo-36018: Address more reviewer feedback (GH-15733) (GH-15734) 2019-09-08 18:40:06 -07:00
string.py
stringprep.py
struct.py
subprocess.py bpo-37424: Avoid a hang in subprocess.run timeout output capture (GH-14490) 2019-09-11 03:05:14 -07:00
sunau.py
symbol.py
symtable.py
sysconfig.py
tabnanny.py
tarfile.py
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 bpo-37953: Fix ForwardRef hash and equality checks (GH-15400) 2019-09-13 13:00:39 -07:00
uu.py
uuid.py Fix typos mostly in comments, docs and test names (GH-15209) 2019-08-30 13:42:54 -07:00
warnings.py
wave.py
weakref.py bpo-38006: Avoid closure in weakref.WeakValueDictionary (GH-15641) 2019-09-09 09:24:16 -07:00
webbrowser.py
xdrlib.py
zipapp.py
zipfile.py bpo-36991: Fix incorrect exception escaping ZipFile.extract() (GH-13632) 2019-09-12 07:33:53 -07:00
zipimport.py