chore: pyupgrade --py38-plus

This commit is contained in:
Mathieu Dupuy 2024-08-06 13:23:44 +02:00
parent 45f0b8809b
commit 34b449f27f
No known key found for this signature in database
GPG key ID: 08C1D4F32506B23A
4 changed files with 14 additions and 25 deletions

View file

@ -349,7 +349,7 @@ def load(paths: Optional[Iterable[Tuple[str, bool]]] = None
config_source = "config file %r" % path config_source = "config file %r" % path
config: types.CONFIG config: types.CONFIG
try: try:
with open(path, "r") as f: with open(path) as f:
parser.read_file(f) parser.read_file(f)
config = {s: {o: parser[s][o] for o in parser.options(s)} config = {s: {o: parser[s][o] for o in parser.options(s)}
for s in parser.sections()} for s in parser.sections()}

View file

@ -176,7 +176,7 @@ class ParallelHTTPSServer(ParallelHTTPServer):
if name == "certificate_authority" and not filename: if name == "certificate_authority" and not filename:
continue continue
try: try:
open(filename, "r").close() open(filename).close()
except OSError as e: except OSError as e:
raise RuntimeError( raise RuntimeError(
"Invalid %s value for option %r in section %r in %s: %r " "Invalid %s value for option %r in section %r in %s: %r "

View file

@ -15,9 +15,9 @@
# along with Radicale. If not, see <http://www.gnu.org/licenses/>. # along with Radicale. If not, see <http://www.gnu.org/licenses/>.
import contextlib import contextlib
import sys
from typing import (Any, Callable, ContextManager, Iterator, List, Mapping, from typing import (Any, Callable, ContextManager, Iterator, List, Mapping,
MutableMapping, Sequence, Tuple, TypeVar, Union) MutableMapping, Protocol, Sequence, Tuple, TypeVar, Union,
runtime_checkable)
WSGIResponseHeaders = Union[Mapping[str, str], Sequence[Tuple[str, str]]] WSGIResponseHeaders = Union[Mapping[str, str], Sequence[Tuple[str, str]]]
WSGIResponse = Tuple[int, WSGIResponseHeaders, Union[None, str, bytes]] WSGIResponse = Tuple[int, WSGIResponseHeaders, Union[None, str, bytes]]
@ -41,20 +41,17 @@ def contextmanager(func: Callable[..., Iterator[_T]]
return result return result
if sys.version_info >= (3, 8): @runtime_checkable
from typing import Protocol, runtime_checkable class InputStream(Protocol):
def read(self, size: int = ...) -> bytes: ...
@runtime_checkable
class InputStream(Protocol):
def read(self, size: int = ...) -> bytes: ...
@runtime_checkable @runtime_checkable
class ErrorStream(Protocol): class ErrorStream(Protocol):
def flush(self) -> object: ... def flush(self) -> object: ...
def write(self, s: str) -> object: ...
else: def write(self, s: str) -> object: ...
ErrorStream = Any
InputStream = Any
from radicale import item, storage # noqa:E402 isort:skip from radicale import item, storage # noqa:E402 isort:skip

View file

@ -16,18 +16,12 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with Radicale. If not, see <http://www.gnu.org/licenses/>. # along with Radicale. If not, see <http://www.gnu.org/licenses/>.
import sys from importlib import import_module, metadata
from importlib import import_module
from typing import Callable, Sequence, Type, TypeVar, Union from typing import Callable, Sequence, Type, TypeVar, Union
from radicale import config from radicale import config
from radicale.log import logger from radicale.log import logger
if sys.version_info < (3, 8):
import pkg_resources
else:
from importlib import metadata
_T_co = TypeVar("_T_co", covariant=True) _T_co = TypeVar("_T_co", covariant=True)
@ -52,6 +46,4 @@ def load_plugin(internal_types: Sequence[str], module_name: str,
def package_version(name): def package_version(name):
if sys.version_info < (3, 8):
return pkg_resources.get_distribution(name).version
return metadata.version(name) return metadata.version(name)