diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-11-13 23:54:02 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-11-13 23:54:02 (GMT) |
commit | 6fe39266c8eb0b3e3f3544f6ad2214c15449e086 (patch) | |
tree | 374ded8efdd138abcfdcb722f6d6b9337e88484f /Misc/NEWS | |
parent | f4ad5f5dea172d91ed21d2a330a72e77013bb279 (diff) | |
download | cpython-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 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -85,6 +85,10 @@ Core and Builtins Library ------- +- Issue #25590: In the Readline completer, only call getattr() once per + 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 on patch by Eryksun. |