FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
typeshed/stdlib/_weakrefset.pyi at main · python/typeshed · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
typeshed
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
2.1k
Star
5.1k
Code
Issues
212
Pull requests
155
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
typeshed
/
stdlib
/
_weakrefset.pyi
Copy path
More file actions
More file actions
Latest commit
History
History
History
49 lines (45 loc) · 2.29 KB
Breadcrumbs
typeshed
/
stdlib
/
_weakrefset.pyi
Copy path
File metadata and controls
49 lines (45 loc) · 2.29 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from
collections
.
abc
import
Iterable
,
Iterator
,
MutableSet
from
types
import
GenericAlias
from
typing
import
Any
,
ClassVar
,
TypeVar
,
overload
from
typing_extensions
import
Self
__all__
=
[
"WeakSet"
]
_S
=
TypeVar
(
"_S"
)
_T
=
TypeVar
(
"_T"
)
class
WeakSet
(
MutableSet
[
_T
]):
@
overload
def
__init__
(
self
,
data
:
None
=
None
)
->
None
: ...
@
overload
def
__init__
(
self
,
data
:
Iterable
[
_T
])
->
None
: ...
def
add
(
self
,
item
:
_T
)
->
None
: ...
def
discard
(
self
,
item
:
_T
)
->
None
: ...
def
copy
(
self
)
->
Self
: ...
def
remove
(
self
,
item
:
_T
)
->
None
: ...
def
update
(
self
,
other
:
Iterable
[
_T
])
->
None
: ...
__hash__
:
ClassVar
[
None
]
# type: ignore[assignment]
def
__contains__
(
self
,
item
:
object
)
->
bool
: ...
def
__len__
(
self
)
->
int
: ...
def
__iter__
(
self
)
->
Iterator
[
_T
]: ...
def
__ior__
(
self
,
other
:
Iterable
[
_T
])
->
Self
: ...
# type: ignore[override,misc]
def
difference
(
self
,
other
:
Iterable
[
_T
])
->
Self
: ...
def
__sub__
(
self
,
other
:
Iterable
[
Any
])
->
Self
: ...
def
difference_update
(
self
,
other
:
Iterable
[
Any
])
->
None
: ...
def
__isub__
(
self
,
other
:
Iterable
[
Any
])
->
Self
: ...
def
intersection
(
self
,
other
:
Iterable
[
_T
])
->
Self
: ...
def
__and__
(
self
,
other
:
Iterable
[
Any
])
->
Self
: ...
def
intersection_update
(
self
,
other
:
Iterable
[
Any
])
->
None
: ...
def
__iand__
(
self
,
other
:
Iterable
[
Any
])
->
Self
: ...
def
issubset
(
self
,
other
:
Iterable
[
_T
])
->
bool
: ...
def
__le__
(
self
,
other
:
Iterable
[
_T
])
->
bool
: ...
def
__lt__
(
self
,
other
:
Iterable
[
_T
])
->
bool
: ...
def
issuperset
(
self
,
other
:
Iterable
[
_T
])
->
bool
: ...
def
__ge__
(
self
,
other
:
Iterable
[
_T
])
->
bool
: ...
def
__gt__
(
self
,
other
:
Iterable
[
_T
])
->
bool
: ...
def
__eq__
(
self
,
other
:
object
)
->
bool
: ...
def
symmetric_difference
(
self
,
other
:
Iterable
[
_S
])
->
WeakSet
[
_S
|
_T
]: ...
def
__xor__
(
self
,
other
:
Iterable
[
_S
])
->
WeakSet
[
_S
|
_T
]: ...
def
symmetric_difference_update
(
self
,
other
:
Iterable
[
_T
])
->
None
: ...
def
__ixor__
(
self
,
other
:
Iterable
[
_T
])
->
Self
: ...
# type: ignore[override,misc]
def
union
(
self
,
other
:
Iterable
[
_S
])
->
WeakSet
[
_S
|
_T
]: ...
def
__or__
(
self
,
other
:
Iterable
[
_S
])
->
WeakSet
[
_S
|
_T
]: ...
def
isdisjoint
(
self
,
other
:
Iterable
[
_T
])
->
bool
: ...
def
__class_getitem__
(
cls
,
item
:
Any
,
/
)
->
GenericAlias
: ...
Back
|
FazBrowse Home
|
New Git URL