Wim Jeantine-Glenn
Wim Jeantine-Glenn
Reproducer: ``` package main import "os" import flag "github.com/spf13/pflag" func main() { fs := flag.NewFlagSet("myprog", flag.ExitOnError) fs.Parse(os.Args[1:]) } ``` Example: ``` $ go run main.go --bogus unknown flag: --bogus Usage...
It says: > Fedora, CentOs, RedHat, or older versions of SUSE - Download and run this rpm. But the release asset is not there https://github.com/David-OConnor/pyflow/releases/tag/0.3.1 (404 at https://github.com/David-OConnor/pyflow/releases/download/0.3.1/pyflow-0.3.1.x86_64.rpm) When attempting...
https://github.com/man-group/pytest-plugins/tree/master/pytest-server-fixtures#simple-http-server It does not show in `pytest --fixtures` and tests using this fixture get error E fixture 'simple_http_server' not found There is one called `simple_http_test_server` in the source: https://github.com/man-group/pytest-plugins/blob/v1.7.0/pytest-server-fixtures/pytest_server_fixtures/http.py#L22-L28 However...
I'm using the CPython configure flags `--enable-shared` with an rpath interpolation (LDFLAGS). Linux platform (RHEL 8.3). The interpreter's stdlib venv works just fine, but poetry installer doesn't like something about...
By default it wants to unzip to `~/.shiv`. Is it possible to use shiv when there is no writable disk even available? i.e. working in-memory entirely. A .pyz created from...
Now that Python 3.7 is EOL and stdlib `importlib.metadata` is available in all non-EOL Python versions, it is no longer advisable to keep a `__version__` attribute in the source code....
``` >>> import ftfy >>> s = "Ä×èÈÄÄî▒è¤ô_üiâAâjâüâpâXüj_10òb.png" >>> ftfy.ftfy(s) 'Ä×èÈÄÄî▒è¤ô_üiâAâjâüâpâXüj_10òb.png' >>> s.encode('cp850').decode('shift-jis') '時間試験観点(アニメパス)_10秒.png' ``` Possible? Thanks
Nice library! Would you release to PyPI so that users can simply `pip install` and other projects can specify as dependency?
The suggestion in the docs doesn't seem to work: ``` # test_example.py import requests import requests_mock requests_mock.mock.case_sensitive = True def test_case_insensitive(requests_mock): get = requests_mock.get('https://example.org', text='ok') response = requests.get("https://example.org", params={'key1': 'val1',...
### Description https://github.com/pypa/pip/issues/4170 is closed but the bug is still there not sure if it's a regression or the fix may have missed something in the first place (@cjerdonek?). I...