Skip to content

Commit

Permalink
0.8.0 RC 2
Browse files Browse the repository at this point in the history
  • Loading branch information
flexatone committed Apr 10, 2024
1 parent ddec7de commit 290e6ea
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions xensieve.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ import typing as tp
class IterValue:
def __init__(self) -> None: ...

def __iter__(self) -> tp.Self: ...
def __iter__(self) -> 'IterValue': ...

def __next__(self) -> int: ...

class IterInterval:
def __init__(self) -> None: ...

def __iter__(self) -> tp.Self: ...
def __iter__(self) -> 'IterInterval': ...

def __next__(self) -> int: ...

class IterState:
def __init__(self) -> None: ...

def __iter__(self) -> tp.Self: ...
def __iter__(self) -> 'IterState': ...

def __next__(self) -> bool: ...

Expand All @@ -29,13 +29,13 @@ class Sieve:

def __contains__(self, v: int, /) -> bool: ...

def __invert__(self) -> tp.Self: ...
def __invert__(self) -> 'Sieve': ...

def __xor__(self, other: tp.Self) -> tp.Self: ...
def __xor__(self, other: 'Sieve') -> 'Sieve': ...

def __or__(self, other: tp.Self) -> tp.Self: ...
def __or__(self, other: 'Sieve') -> 'Sieve': ...

def __and__(self, other: tp.Self) -> tp.Self: ...
def __and__(self, other: 'Sieve') -> 'Sieve': ...

def iter_value(self, start: int, stop: int, /) -> IterValue: ...

Expand Down

0 comments on commit 290e6ea

Please sign in to comment.