Ignore python3.11 cgi deprecation warning

The cgi module is marked as deprecated and will be removed in
python3.13. servefile uses the module for its FieldStorage class used in
the upload functionality. For now I will just ignore this, so servefile
doesn't print out the warning each time it is run, but soon this will
require either a rewrite of FieldStorage or an external library.
This commit is contained in:
Sebastian Lohff 2023-01-23 20:50:13 +01:00
parent d334a52e50
commit 0cec13c9ba
2 changed files with 8 additions and 1 deletions

View File

@ -11,7 +11,6 @@ __version__ = '0.5.3'
import argparse
import base64
import cgi
import datetime
import io
import mimetypes
@ -23,6 +22,7 @@ from subprocess import Popen, PIPE
import sys
import tempfile
import time
import warnings
# fix imports for python2/python3
try:
@ -43,6 +43,11 @@ try:
except ImportError:
pass
with warnings.catch_warnings():
warnings.filterwarnings("ignore", category=DeprecationWarning)
# scheduled for removal in python3.13, used for FieldStorage
import cgi
def getDateStrNow():
""" Get the current time formatted for HTTP header """

View File

@ -42,6 +42,8 @@ setup(
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Communications',
'Topic :: Communications :: File Sharing',
'Topic :: Internet',