ubuiltins: Remove set. This is not enabled.

This commit is contained in:
Laurens Valk
2022-11-28 15:03:18 +01:00
parent 6ad229c7c0
commit f7380b8bb0
-15
View File
@@ -970,21 +970,6 @@ def round(*args):
"""
class set:
@overload
def __init__(self) -> None:
...
@overload
def __init__(self, iterable: Iterable) -> None:
...
def __init__(self, *args) -> None:
"""
Returns a new set object, optionally with elements taken from ``iterable``.
"""
def setattr(object: Any, name: _str, value: Any) -> None:
"""
Assigns the value to the attribute, provided the object allows it.