Lie Ryan
Lie Ryan
**Is your feature request related to a problem? Please describe.** Given that `FooBar` is an undefined class, and you have a code that looks like this: ```python result = FooBar(...
**Is your feature request related to a problem? Please describe.** When using type annotation to declare a `typing.NewType`, you have to pass in the type name as the first argument:...
### Description These config settings tells rope whether to cache the projectdb and retain undo history respectively. We should just always save these files. Rope should just always have sensible...
Suppose that I have an app with one erroneous file: ``` $ ./manage.py lintmigrations --git-commit-id mycommit --no-cache --include-apps myapp ; echo $? *** Summary *** Valid migrations: 0/15 Erroneous migrations:...
This PR adds a way to exclude sentry-sdk from attaching to certain Django signals. This can be used to work around performance issues when sentry attaches to performance sensitive signals...
Hi, I am the maintainer of python-rope, just updating this outdated metadata here. Rope has moved from Sourceforge to GitHub and has [relicensed to LGPLv3+](https://github.com/python-rope/rope/issues/262). Also noted that rope 0.18.0...
I feel kinda responsible for this; the FIXTURE_MEDIA_REQUIRE_PREFIX option doesn't actually work. Well, it does what it says, but then when you do ./manage.py loaddata, it will load these file...
This allows you to use the the keybinding `cf`, `cs`, `cA` to create a fixup/squash commits for the selected line in `:Gblame` window, with similar semantic to `:Gstatus` window. I...
# Description Added a new setting (`imports.preferred_import_style`) that controls how rope inserts new import statements. It can be set to: - `normal-import` (default) which will insert imports as `import `...
The following series of tickets all have the same root cause, rope currently doesn't validate whether the target variable name is currently occupied by another existing variable: - [ ]...