Jason R. Coombs
Jason R. Coombs
> impossible to explicitly say "do what the stdlib does" I think I read somewhere that `encoding="locale"` will provide the legacy behavior. However, "what the stdlib does" is expected to...
What is the app folder? When I run `dbxcli ls`, I get a listing of the contents of the root of my dropbox.
Thanks for working on this. I'm eager for there to be something that builds and installs, even if it crashes or is unstable when it runs. I've opted into Python...
I did inspect to see if the certificates were present, and they are: ``` ~ # ~\AppData\Local\pipx\pipx\venvs\httpie\Scripts\python -c "import requests as r; print(r.certs.where())" C:\USERS\JARACO\APPDATA\LOCAL\PIPX\PIPX\VENVS\HTTPIE\Lib\site-packages\certifi\cacert.pem ``` (that's without injecting certifi manually)...
If it's an issue with requests, has it been reported to requests? Is the breakage by design? Are they tracking the issue? I found https://github.com/psf/requests/issues/6730, but it mentions 2.32.3 explicitly...
Is this related to the issue I'm having, where the pdb prompt is unresponsive to me? Under Python 3.13rc2, I run a failing test with `--pdb` and it stalls: ```...
I tested to see if the proposed fix for 12044 has any effect, but it does not, so it's unlikely related.
Disabling `--doctest-modules` causes the error to relocate: ``` _____________________________________________ ERROR collecting distutils/tests/test_archive_util.py ______________________________________________ ImportError while importing test module '/Users/jaraco/code/pypa/distutils/distutils/tests/test_archive_util.py'. Hint: make sure your test modules/packages have valid Python names. Traceback:...
I put a breakpoint on `_pytest.pathlib.import_path` and when it first gets hit, it's looking at `./conftest.py` and `distutils` is not yet in `sys.modules`, but on the next call, when collecting...
Here's what the call stack looks like when `distutils` is imported from stdlib: ``` /Users/jaraco/code/pypa/distutils/.tox/py311/bin/pytest(8)() -> sys.exit(console_main()) /Users/jaraco/code/pytest-dev/pytest/src/_pytest/config/__init__.py(207)console_main() -> code = main() /Users/jaraco/code/pytest-dev/pytest/src/_pytest/config/__init__.py(160)main() -> config = _prepareconfig(args, plugins) /Users/jaraco/code/pytest-dev/pytest/src/_pytest/config/__init__.py(347)_prepareconfig() ->...