-
Notifications
You must be signed in to change notification settings - Fork 22
Deprecate Py3.6 and Py3.7 #119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #119 +/- ##
==========================================
- Coverage 99.09% 98.88% -0.21%
==========================================
Files 20 20
Lines 2097 2069 -28
Branches 556 511 -45
==========================================
- Hits 2078 2046 -32
- Misses 11 15 +4
Partials 8 8 ☔ View full report in Codecov by Sentry. |
@@ -76,15 +76,18 @@ | |||
|
|||
def cache_parameters(self) -> CacheParameters: | |||
"""Get the parameters of the cache""" | |||
... |
Check notice
Code scanning / CodeQL
Statement has no effect
|
||
def cache_info(self) -> CacheInfo: | ||
""" | ||
Get the current performance and boundary of the cache | ||
as a :py:class:`~typing.NamedTuple` | ||
""" | ||
... |
Check notice
Code scanning / CodeQL
Statement has no effect
|
||
def cache_clear(self) -> None: | ||
"""Evict all call argument patterns and their results from the cache""" | ||
... |
Check notice
Code scanning / CodeQL
Statement has no effect
# "support wrapping descriptors" means that the wrapping descriptor has to use | ||
# the cache as a descriptor as well, i.e. invoke its ``__get__`` method instead | ||
# of just passing in `self`/`cls`/... directly. | ||
... |
Check notice
Code scanning / CodeQL
Statement has no effect
def reduce( | ||
function: Callable[[T1, T2], T1], iterable: AnyIterable[T2], initial: T1 | ||
) -> Coroutine[T1, Any, Any]: | ||
... |
Check notice
Code scanning / CodeQL
Statement has no effect
def reduce( | ||
function: Callable[[T, T], T], iterable: AnyIterable[T] | ||
) -> Coroutine[T, Any, Any]: | ||
... |
Check notice
Code scanning / CodeQL
Statement has no effect
): | ||
pass | ||
) -> None: | ||
... |
Check notice
Code scanning / CodeQL
Statement has no effect
): | ||
pass | ||
) -> None: | ||
... |
Check notice
Code scanning / CodeQL
Statement has no effect
@@ -58,14 +58,14 @@ | |||
reverse: bool, | |||
key: Callable[[T], Awaitable[LT]], | |||
) -> "AsyncIterator[_KeyIter[LT]]": | |||
pass | |||
... |
Check notice
Code scanning / CodeQL
Statement has no effect
|
||
@overload | ||
@classmethod | ||
def from_iters( | ||
cls, iterables: Tuple[AnyIterable[LT], ...], reverse: bool, key: None | ||
) -> "AsyncIterator[_KeyIter[LT]]": | ||
pass | ||
... |
Check notice
Code scanning / CodeQL
Statement has no effect
typing_extensions
dependency.slot_get
helper (closes slot_get helper works incorrectly with metaclasses #78)reduce
function argumentsCloses #95.