Gordon Wrigley
Gordon Wrigley
Before I go digging into the details of this, do you think it would be technically possible to move the script element and the default_order_field div inside the main inline-group...
I have a memory profile with > 60k each of weakref, KeyedRef and WeakValueDictionary, this is the most likely source. Also I think the improvement is good regardless. There is...
Currently the various contracts require one module per line. It would be nice to be able to have multiple per line and to have that be semantically different from when...
Containers seem to really be a prefix system. Repeat all of these rules prefixing them with each of the container names. That seems like a generally useful bit of functionality...
With 0.7.4 and --remove --include-star-import --ignore-init --gitignore In code like this def bob(): print(sys.path) import sys The import gets incorrectly removed. You might reasonably ask why I even had code...
This line https://github.com/unimport/unimport/blob/27f421d5f83dee28d7c996db76573ffef8e782cf/unimport/main.py#L196 lead to this error: ``` Traceback (most recent call last): File "C:\redacted\Scripts\unimport-script.py", line 33, in sys.exit(load_entry_point('unimport==0.7.4', 'console_scripts', 'unimport')()) File "c:\redacted\lib\site-packages\unimport\main.py", line 194, in main print( File "C:\redacted\Python38\lib\encodings\cp1252.py",...
Sooo, I'm using Python 3.6.1 on a Win10 machine, inside the Mingw Bash environment that comes with the Windows Git client and I get: ValueError: Could not apply the patch...
When using --reuse-db it would be nice if pytest-django could detect that the database it's reusing has applied migrations that don't exist (due to changing branch or code edits) and...
When I `import magic` the Python process immediately exits with status 9 without printing any error message. This is due to problems in my environment and I don't mind that...
Looking here https://github.com/saxix/django-adminactions/blob/edbfed7714c9455e92bf8d9407dda37c68aea26a/src/adminactions/mass_update.py#L277 ```python mass_update_exclude = getattr(modeladmin, 'mass_update_exclude', ['pk']) or [] if 'pk' not in mass_update_exclude: mass_update_exclude.append('pk') ``` So mass_update_exclude can't ever be False. Then a couple of lines later:...