From c8b3443d5f369b000fd19edbf01c11e2e876d27d Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Tue, 31 Dec 2019 19:12:15 +0100 Subject: [PATCH] Add the CHANGELOG entries for dict completions. --- CHANGELOG.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 378b31ca..5aa12521 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -10,6 +10,8 @@ Changelog - **Add** ``Script.get_context`` to get information where you currently are. - Goto on a function/attribute in a class now goes to the definition in its super class. +- Dict key completions are working now. e.g. ``d = {1000: 3}; d[10`` will + expand to ``1000``. - Completion for "proxies" works now. These are classes that have a ``__getattr__(self, name)`` method that does a ``return getattr(x, name)``. - Understanding of Pytest fixtures.