Library
-------
+ - Issue #6973: When we know a subprocess.Popen process has died, do
+ not allow the send_signal(), terminate(), or kill() methods to do
+ anything as they could potentially signal a different process.
+
+- Issue #23883: Added missing APIs to __all__ to match the documented APIs
+ for the following modules: csv, enum, ftplib, logging, optparse, threading
+ and wave. Also added a test.support.check__all__() helper. Patches by
+ Jacek KoĆodziej.
+
- Issue #25590: In the Readline completer, only call getattr() once per
- attribute.
+ attribute. Also complete names of attributes such as properties and slots
+ which are listed by dir() but not yet created on an instance.
- Issue #25498: Fix a crash when garbage-collecting ctypes objects created
by wrapping a memoryview. This was a regression made in 3.5a1. Based