pallets / werkzeug

The comprehensive WSGI web application library.
https://werkzeug.palletsprojects.com
BSD 3-Clause "New" or "Revised" License
6.63k stars 1.73k forks source link

endpoint type is Any #2895

Closed davidism closed 4 months ago

davidism commented 4 months ago

Rule.endpoint can be anything, not only a string. Use Any instead of str for annotations. The only place I could see where this might matter is for the "did you mean" suggestion, which now converts the endpoints to strings before commparing.

fixes #2836