From 6daa03e98d0be5f9abe68f5a60904a4d0233ac22 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Tue, 24 Dec 2019 12:51:14 +0100 Subject: [PATCH] Add the fix for #997 to the changelog --- CHANGELOG.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f365c87c..562f4957 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. +- Completion for "proxies" works now. These are classes that have a + ``__getattr__(self, name)`` method that does a ``return getattr(x, name)``. - Big **Script API Changes**: - The line and column parameters of ``jedi.Script`` are now deprecated - ``completions`` deprecated, use ``complete`` instead