lib/__builtins__/set.py | raw changeset files shortlog |
1.1 --- a/lib/__builtins__/set.py Fri Dec 09 16:22:37 2016 +0100 1.2 +++ b/lib/__builtins__/set.py Fri Dec 09 16:26:50 2016 +0100 1.3 @@ -19,10 +19,10 @@ 1.4 this program. If not, see <http://www.gnu.org/licenses/>. 1.5 """ 1.6 1.7 -class frozenset(object): 1.8 +class frozenset: 1.9 def __init__(self, iterable): pass 1.10 1.11 -class set(object): 1.12 +class set: 1.13 def __init__(self, iterable): pass 1.14 def add(self, item): pass 1.15 def clear(self): pass