From 23bdb880e4adc0c45fa2ed537a3a0039b14e5753 Mon Sep 17 00:00:00 2001 From: David Halter Date: Tue, 5 Feb 2013 23:32:28 +0100 Subject: [PATCH] dynamic docstring --- jedi/dynamic.py | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/jedi/dynamic.py b/jedi/dynamic.py index dcc150ce..7e8034d5 100644 --- a/jedi/dynamic.py +++ b/jedi/dynamic.py @@ -1,9 +1,16 @@ """ -For dynamic completion. +For dynamic completions: -Sorry to everyone who is reading this code. Especially the array parts are -really cryptic and not understandable. It's just a hack, that turned out to be -working quite good. +- array operations + + - inserting/appending/extending ``list`` + - adding/updating ``set`` +- dynamic completion of parameters +- if/while/isinstance type checks +- related names searching + +I will write more about the process, once I cleaned up certain parts of this +module. """ from __future__ import with_statement