Lie Ryan
Lie Ryan
This adds a command to avoid redefining autocmd more than once in a vim session. Every time vim sets filetype for a new buffer, vim will re-run ftdetect.vim. The augroup...
Some text editors delete or moves a file before saving the edited file. autonose occasionally crash when it tries to detect modification time while the file is temporarily deleted. ```...
Autonose terminates with the following traceback when setUpClass() raises an error: ``` Traceback (most recent call last): File "/home/lieryan/.cache/0install.net/implementations/sha256=69730523263f37581d813bf443f6ca9d528055968d95124d1558baebd0a4f5ec/paragram/process/base_process.py", line 209, in _run self._target(self, *self._args, **self._kwargs) File "/home/lieryan/Projects/autonose/autonose/runner.py", line 194,...
There is a bug in Ubuntu which causes autonose's startup time to be considerably long. It produces this error in the console: ``` Error creating proxy: Error calling StartServiceByName for...
According to [Section 3.2.3](http://greenbytes.de/tech/webdav/draft-ietf-httpbis-p1-messaging-16.html#field.rules): > Senders SHOULD NOT escape octets in quoted-strings that do not require escaping (i.e., other than DQUOTE and the backslash octet). However, currently quote_string() escapes SEPARATOR...
How to reproduce: - `pip install Django pudb ipython` - Create fresh Django app: `django-admin startproject myproject`, `./manage.py startapp myapp` - Add a new view method in `myapp/views.py`: def myview(request):...
``` class B: pass class C(object): var: 'B' = 1 def foo(self, arg: "B"): self.var: 'List[B]' = [arg] var: "Optional[B]" = arg ``` Renaming `B` should rename the variables used...
**Describe the bug** Currently, type inference are kinda dodgy when analyzing code containing comprehensions. **To Reproduce** Steps to reproduce the behavior: 1. Code to reproduce: ``` def test_xxx(self): code =...
**Describe the bug** Inlining expression containing string constant into f-string should take into consideration the surrounding f-string's quote. **To Reproduce** Steps to reproduce the behavior: 1. Code before refactoring: ```...
**Describe the bug** Incorrect inline refactoring with dictionary expansion. **To Reproduce** Steps to reproduce the behavior: 1. Code before refactoring: ``` def main(arguments): foobar(workspace, **arguments[0]) def foobar(workspace, document_uri, range): return...