This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: typing support in wsgiref
Type: enhancement Stage: patch review
Components: Library (Lib) Versions:
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: JelleZijlstra, corona10, pje, srittau
Priority: normal Keywords: patch

Created on 2020-10-12 10:17 by srittau, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 32335 open srittau, 2022-04-05 15:22
Messages (2)
msg378484 - (view) Author: Sebastian Rittau (srittau) * Date: 2020-10-12 10:17
In typeshed (the repository for stdlib type annotations), we have defined a bunch of types to support annotating WSGI interfaces. See https://github.com/python/typeshed/blob/master/stdlib/2and3/_typeshed/wsgi.pyi for the current version. Unfortunately these types are only available at type check time, which means that users need to do some gymnastics to use them in their own code.

I think it would be worthwhile to add these types directly to wsgiref or to a new module (e.g. wsgiref.types). On the one hand users could use them at runtime easily, on the other hand they serve as additional documentation WSGI types. In my experience, WSGI applications and middleware often slightly misimplement the standard, which can make interoperability difficult. Both type checking and concrete documentation could help alleviate this problem.

If the maintainers think this would be a good idea, I could provide a PR for both the types and the Python documentation.
msg416688 - (view) Author: Jelle Zijlstra (JelleZijlstra) * (Python committer) Date: 2022-04-04 18:09
This seems useful to me but I don't have experience with wsgiref. pje is listed as the maintainer in the devguide but appears to be inactive.

I'd suggest you open a PR and if anyone feels strongly against it, they can complain.
History
Date User Action Args
2022-04-11 14:59:36adminsetgithub: 86178
2022-04-05 15:22:18srittausetkeywords: + patch
stage: patch review
pull_requests: + pull_request30392
2022-04-05 15:12:37corona10setnosy: + corona10
2022-04-04 18:09:02JelleZijlstrasetnosy: + pje, JelleZijlstra
messages: + msg416688
2020-10-12 10:17:09srittaucreate