Remove the function annotations from _abcoll.py

This commit is contained in:
Raymond Hettinger 2011-01-12 20:46:15 +00:00
parent ecb6e81d9e
commit 3bce13d42b
1 changed files with 4 additions and 4 deletions

View File

@ -311,17 +311,17 @@ class MutableSet(Set):
except KeyError:
pass
def __ior__(self, it: Iterable):
def __ior__(self, it):
for value in it:
self.add(value)
return self
def __iand__(self, it: Iterable):
def __iand__(self, it):
for value in (self - it):
self.discard(value)
return self
def __ixor__(self, it: Iterable):
def __ixor__(self, it):
if it is self:
self.clear()
else:
@ -334,7 +334,7 @@ class MutableSet(Set):
self.add(value)
return self
def __isub__(self, it: Iterable):
def __isub__(self, it):
if it is self:
self.clear()
else: