GoogleCloudPlatform / appengine-python-standard

Google App Engine services SDK for Python 3
Apache License 2.0
70 stars 47 forks source link

`cgi` module is deprecated #117

Open 12458 opened 5 months ago

12458 commented 5 months ago

See PEP 594. The cgi module is deprecated since version Python 3.11, will be removed in version Python 3.13.

Currently, a DeprecationWarning is emitted due to appengine-python-standard use of the cgi module.

.venv/lib/python3.12/site-packages/google/appengine/runtime/request_environment.py:29: DeprecationWarning: 'cgi' is deprecated and slated for removal in Python 3.13
    import cgi

Specifications