Add the CHANGELOG entries for dict completions.

This commit is contained in:
Dave Halter
2019-12-31 19:12:15 +01:00
parent 469ddc281d
commit c8b3443d5f

View File

@@ -10,6 +10,8 @@ Changelog
- **Add** ``Script.get_context`` to get information where you currently are. - **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 - Goto on a function/attribute in a class now goes to the definition in its
super class. 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 - Completion for "proxies" works now. These are classes that have a
``__getattr__(self, name)`` method that does a ``return getattr(x, name)``. ``__getattr__(self, name)`` method that does a ``return getattr(x, name)``.
- Understanding of Pytest fixtures. - Understanding of Pytest fixtures.