Skip to content

Commit 37db1d8

Browse files
committed
Introduce Self type
This change removes Python 3.8, 3.9 and 3.10 support. This reverts commit 6952e9a.
1 parent d0aa115 commit 37db1d8

File tree

6 files changed

+7
-20
lines changed

6 files changed

+7
-20
lines changed

pyee/asyncio.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
# -*- coding: utf-8 -*-
22

33
from asyncio import AbstractEventLoop, ensure_future, Future, iscoroutine, wait
4-
from typing import Any, Callable, cast, Dict, Optional, Set, Tuple
4+
from typing import Any, Callable, cast, Dict, Optional, Self, Set, Tuple
55

66
from pyee.base import EventEmitter
77

8-
Self = Any
9-
108
__all__ = ["AsyncIOEventEmitter"]
119

1210

pyee/base.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,13 @@
1010
Mapping,
1111
Optional,
1212
overload,
13+
Self,
1314
Set,
1415
Tuple,
1516
TypeVar,
1617
Union,
1718
)
1819

19-
Self = Any
20-
2120

2221
class PyeeException(Exception):
2322
"""An exception internal to pyee. Deprecated in favor of PyeeError."""

pyee/executor.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22

33
from concurrent.futures import Executor, Future, ThreadPoolExecutor
44
from types import TracebackType
5-
from typing import Any, Callable, Dict, Optional, Tuple, Type
5+
from typing import Any, Callable, Dict, Optional, Self, Tuple, Type
66

77
from pyee.base import EventEmitter
88

9-
Self = Any
10-
119
__all__ = ["ExecutorEventEmitter"]
1210

1311

pyee/trio.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
AsyncGenerator,
88
Awaitable,
99
Callable,
10-
cast,
1110
Dict,
1211
Optional,
12+
Self,
1313
Tuple,
1414
Type,
1515
)
@@ -18,8 +18,6 @@
1818

1919
from pyee.base import EventEmitter, PyeeError
2020

21-
Self = Any
22-
2321
__all__ = ["TrioEventEmitter"]
2422

2523

@@ -126,7 +124,7 @@ async def __aenter__(self: Self) -> "TrioEventEmitter":
126124
self._context: Optional[AbstractAsyncContextManager["TrioEventEmitter"]] = (
127125
self.context()
128126
)
129-
return await cast(Any, self._context).__aenter__()
127+
return await self._context.__aenter__()
130128

131129
async def __aexit__(
132130
self: Self,

pyee/twisted.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
# -*- coding: utf-8 -*-
22

33
from asyncio import iscoroutine
4-
from typing import Any, Callable, cast, Dict, Optional, Tuple
4+
from typing import Any, Callable, Dict, Optional, Self, Tuple
55

66
from twisted.internet.defer import Deferred, ensureDeferred
77
from twisted.python.failure import Failure
88

99
from pyee.base import EventEmitter, PyeeError
1010

11-
Self = Any
12-
13-
1411
__all__ = ["TwistedEventEmitter"]
1512

1613

@@ -90,6 +87,6 @@ def _emit_handle_potential_error(self: Self, event: str, error: Any) -> None:
9087
else:
9188
self.emit("error", PyeeError(f"Unexpected failure object: {error}"))
9289
else:
93-
cast(Any, super(TwistedEventEmitter, self))._emit_handle_potential_error(
90+
(super(TwistedEventEmitter, self))._emit_handle_potential_error(
9491
event, error
9592
)

pyproject.toml

-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ classifiers = [
2121
"Operating System :: OS Independent",
2222
"Programming Language :: Python",
2323
"Programming Language :: Python :: 3",
24-
"Programming Language :: Python :: 3.8",
25-
"Programming Language :: Python :: 3.9",
26-
"Programming Language :: Python :: 3.10",
2724
"Programming Language :: Python :: 3.11",
2825
"Programming Language :: Python :: 3.12",
2926
"Programming Language :: Python :: 3.13",

0 commit comments

Comments
 (0)