Chris Withers
Chris Withers
The following field: ``` forms.DateField(required=True, widget=DateTimePicker()) ``` ...when rendered, does not have the star indicating required next to its label. If I don't use the DateTimePicker, the star is correctly...
I totally misunderstood `url_for`'s API, I was expecting `url_for('some_route', foo='bar')` to return `'http://testserver/my_route/?foo=bar'`. I understand why that is now, but what is the best way to generate urls like this?...
Unregistered a standby that was no longer needed with `repmgr standby unregister`. Time passes. Alerts received from primary about too many WALs. I had to go in an manually drop...
I followed in installation instructions but getting this: ``` >>> tables = camelot.read_pdf(...pdf') Traceback (most recent call last): File "lib/python3.7/site-packages/camelot/ext/ghostscript/_gsprint.py", line 251, in libgs = cdll.LoadLibrary("libgs.so") File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ctypes/__init__.py", line 434,...
It'd be great if the docs could cover whether conda-lock is best installed in the project environment where it's being used or whether it should be in its own environment.
https://hovercraft.readthedocs.io/en/latest/designing.html#test-with-different-browsers ...we're on Chrome 60 now ;-)
**Describe the bug** Adding this to `.coveragerc` results in all source being ignored: ``` [report] exclude_lines = ... ``` **To Reproduce** How can we reproduce the problem? Please *be specific*....
**Describe the bug** Attempting to profile a script using multiprocessing using `scalene --html --outfile profile.html /foo/script arg1 arg2` results in a hang / busy lockup. **To Reproduce** Unfortunately, the script...
It made me a bit sad that I had to c'n'p this piece of code, rather than call a helper, to request fixtures in an Item subclass: https://github.com/cjw296/sybil/blob/552d3ff2d6e8639ee5d3c8efa26f5e535e064ae8/sybil/integration/pytest.py#L41
multiprocessing.Pool has a handy initializer parameter to pass a callable for setting up per-process resources (database connections, loggers, etc) but joblib doesn't expose a way to pass this. I see...