| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
instruction/expr text
|
|
|
|
|
|
|
|
|
|
|
|
This is technically correct (and for illustration):
```py
>>> "asdf"""
'asdf'
>>> "asdf""qwer"
'asdfqwer'
>>> def foo():
... "asdf"""
... return 4
...
>>> foo()
4
>>> foo.__doc__
'asdf'
```
But as it currently exists, it messes up some (admittedly, incorrect)
lexers/syntax highlighters (e.g. emacs's python-mode).
|
|
|
|
|
|
fix state initialization.
|
|
|
|
installation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Refactor plugin repo loading into scripting provider.
Find python binary for given python library
|
|
|
|
get_view_of_file_with_options API.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
documentation
|
|
|
|
|