summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-21 18:09:48 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-21 18:09:48 (GMT)
commitb6076fb13c6bf97f4fae76da478a26e0f4f24879 (patch)
tree3dfc0c5ce941dc2650c86df3f2a7fc7844f2e1d9 /Misc/NEWS
parentd73aca769f1f6eebb46faa9161cbebe806db3659 (diff)
downloadcpython-b6076fb13c6bf97f4fae76da478a26e0f4f24879.zip
cpython-b6076fb13c6bf97f4fae76da478a26e0f4f24879.tar.gz
cpython-b6076fb13c6bf97f4fae76da478a26e0f4f24879.tar.bz2
Issue #23008: Fixed resolving attributes with boolean value is False in pydoc.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 183f7d1..fb2ced1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,6 +31,8 @@ Core and Builtins
Library
-------
+- Issue #23008: Fixed resolving attributes with boolean value is False in pydoc.
+
- Fix asyncio issue 235: LifoQueue and PriorityQueue's put didn't
increment unfinished tasks (this bug was introduced in 3.4.3 when
JoinableQueue was merged with Queue).