summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.6.rst
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-11-13 23:54:02 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-11-13 23:54:02 (GMT)
commit6fe39266c8eb0b3e3f3544f6ad2214c15449e086 (patch)
tree374ded8efdd138abcfdcb722f6d6b9337e88484f /Doc/whatsnew/3.6.rst
parentf4ad5f5dea172d91ed21d2a330a72e77013bb279 (diff)
downloadcpython-6fe39266c8eb0b3e3f3544f6ad2214c15449e086.zip
cpython-6fe39266c8eb0b3e3f3544f6ad2214c15449e086.tar.gz
cpython-6fe39266c8eb0b3e3f3544f6ad2214c15449e086.tar.bz2
Issue #25590: Complete attribute names even if they are not yet created
Diffstat (limited to 'Doc/whatsnew/3.6.rst')
-rw-r--r--Doc/whatsnew/3.6.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index 3949dff..89d69cc 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -120,6 +120,10 @@ Private and special attribute names now are omitted unless the prefix starts
with underscores. A space or a colon can be added after completed keyword.
(Contributed by Serhiy Storchaka in :issue:`25011` and :issue:`25209`.)
+Names of most attributes listed by :func:`dir` are now completed.
+Previously, names of properties and slots which were not yet created on
+an instance were excluded. (Contributed by Martin Panter in :issue:`25590`.)
+
urllib.robotparser
------------------