The Fix
Upgrade to version 0.17.0 or later.
Based on closed encode/httpx issue #1365 · PR/commit linked
Production note: Most teams hit this during upgrades or environment changes. Roll out with a canary and smoke critical endpoints (health, OpenAPI/docs) before 100%.
@@ -1,6 +1,7 @@
import itertools
import typing
+from urllib.parse import unquote
import httpcore
from flask import Flask, request
import httpx
app = Flask(__name__)
@app.route('/<path>')
def hello_world(path):
return f"path: { path }, query: { request.args['a'] }, url: { request.url }"
if __name__ == "__main__":
with httpx.Client(app=app, base_url="http://testserver") as client:
resp = client.get("/ä", params={"a": "ä"})
print("httpx", resp.text)
with app.test_client() as client:
resp = client.get("/ä?a=%C3%A4")
print("flask", resp.get_data().decode("utf-8"))
Re-run the minimal reproduction on your broken version, then apply the fix and re-run.
Option A — Upgrade to fixed release\nUpgrade to version 0.17.0 or later.\nWhen NOT to use: This fix is not applicable if the application does not rely on WSGI for path handling.\n\n
Why This Fix Works in Production
- Trigger: Path encoding broken for non-ASCII in WSGI mode
- Mechanism: The WSGI 'PATH_INFO' component was not being unquoted, causing encoding issues for non-ASCII paths
- Why the fix works: The WSGI 'PATH_INFO' component should be unquoted, fixing the encoding issue for non-ASCII paths. (first fixed release: 0.17.0).
- If left unfixed, the same config can fail only in production (env differences), causing startup failures or partial feature outages.
Why This Breaks in Prod
- The WSGI 'PATH_INFO' component was not being unquoted, causing encoding issues for non-ASCII paths
- Production symptom (often without a traceback): Path encoding broken for non-ASCII in WSGI mode
Proof / Evidence
- GitHub issue: #1365
- Fix PR: https://github.com/encode/httpx/pull/1391
- First fixed release: 0.17.0
- Reproduced locally: No (not executed)
- Last verified: 2026-02-09
- Confidence: 0.85
- Did this fix it?: Yes (upstream fix exists)
- Own content ratio: 0.66
Discussion
High-signal excerpts from the issue thread (symptoms, repros, edge-cases).
“So the implication of https://www.python.org/dev/peps/pep-3333/#url-reconstruction is that PATH_INFO should be unquoted”
“This does look like a bug in httpx”
Failure Signature (Search String)
- Path encoding broken for non-ASCII in WSGI mode
Copy-friendly signature
Failure Signature
-----------------
Path encoding broken for non-ASCII in WSGI mode
Error Message
Signature-only (no traceback captured)
Error Message
-------------
Path encoding broken for non-ASCII in WSGI mode
Minimal Reproduction
from flask import Flask, request
import httpx
app = Flask(__name__)
@app.route('/<path>')
def hello_world(path):
return f"path: { path }, query: { request.args['a'] }, url: { request.url }"
if __name__ == "__main__":
with httpx.Client(app=app, base_url="http://testserver") as client:
resp = client.get("/ä", params={"a": "ä"})
print("httpx", resp.text)
with app.test_client() as client:
resp = client.get("/ä?a=%C3%A4")
print("flask", resp.get_data().decode("utf-8"))
What Broke
Non-ASCII paths were incorrectly encoded, leading to unexpected behavior in WSGI applications.
Why It Broke
The WSGI 'PATH_INFO' component was not being unquoted, causing encoding issues for non-ASCII paths
Fix Options (Details)
Option A — Upgrade to fixed release Safe default (recommended)
Upgrade to version 0.17.0 or later.
Use when you can deploy the upstream fix. It is usually lower-risk than long-lived workarounds.
Fix reference: https://github.com/encode/httpx/pull/1391
First fixed release: 0.17.0
Last verified: 2026-02-09. Validate in your environment.
When NOT to Use This Fix
- This fix is not applicable if the application does not rely on WSGI for path handling.
Verify Fix
Re-run the minimal reproduction on your broken version, then apply the fix and re-run.
Did This Fix Work in Your Case?
Quick signal helps us prioritize which fixes to verify and improve.
Prevention
- Add a CI check that diffs key outputs after upgrades (OpenAPI schema snapshots, JSON payload shapes, CLI output).
- Upgrade behind a canary and run integration tests against the canary before 100% rollout.
- Add a TLS smoke test that performs a real handshake in CI (include CA bundle validation and hostname checks).
- Alert on handshake failures by error string and endpoint to catch cert/CA changes quickly.
Version Compatibility Table
| Version | Status |
|---|---|
| 0.17.0 | Fixed |
Related Issues
No related fixes found.
Sources
We don’t republish the full GitHub discussion text. Use the links above for context.