isinstance checks for if/while

This commit is contained in:
David Halter
2012-10-04 00:34:26 +02:00
parent 8d842dd596
commit 7e39a7d1ba
4 changed files with 77 additions and 7 deletions

View File

@@ -60,14 +60,15 @@ Jedi supports many of the widely used Python features:
- class decorators (py3k feature, are being ignored too, until I find a use
case, that doesn't work with Jedi)
- simple/usual ``sys.path`` modifications
- ``isinstance`` checks for if/while
However, it does not yet support (and probably will in future versions, because
they are on my todo list):
- assert / isinstance
- operation support -> [3]\*3 etc.
- manipulations of instances outside the instance variables, without using
functions
- operation support -> ``__mul__``, ``__add__``, etc.
- assert
It does not support (and most probably will not in future versions):