Lie Ryan

Results 79 comments of Lie Ryan

Just to provide some feedback, I've been using this PR's branch for the past year, and it does very well. Much better than default black's behavior when it comes to...

I've just got autonose to work inside virtualenv by installing python-webkit using [a similar workaround as GTK](http://stackoverflow.com/a/9612404). Steps for the workaround for `webkit` (please modify the system's dist-package path, path-to-env,...

A couple things to note here, process substitution does not actually create a real file, but rather it works by attaching a filename to an anonymous pipe using either the...

Current workaround is to use ptpython or ptipython, which seems to not cause any crashes.

For adding breakpoints, you can modify the breakpoint file from your editor. I have a small python script that does this to integrate with vim: https://github.com/lieryan/vim-pudb/tree/remote-pudb/plugin The only minor issue...

I set up hosting rope in RTD when merging the pytoolconfig last week: https://rope.readthedocs.io/en/latest/ We just need to point to it from README in GitHub.

Hi, what Python version are you using to run Rope? Syntax error usually happens because your editor is running Rope with Python version that doesn't support the syntax you're trying...

Hi @bageljrkhanofemus, thanks for looking into this. You're welcome to take this issue, I've assigned this ticket to you.

This is caused by a set of bugs in the standard library's `ast` module related to f-string, which doesn't produce correct offsets. Ref: https://bugs.python.org/issue39564, https://bugs.python.org/issue37458, https://bugs.python.org/issue35212, Background: The current version...

Hi @jgarte, If you want to run rope's unittests, make sure you install the additional dev dependencies (i.e. `pip installl rope[dev]` or equivalent). This will install additional development dependencies that...