We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a83c56 commit caef31dCopy full SHA for caef31d
graalpython/lib-graalpython/exceptions.py
@@ -100,8 +100,7 @@ def StopIteration__repr__(self):
100
return "StopIteration%s" % repr(self.args)
101
102
103
-StopIteration.value = property(StopIteration__value__get)
104
-StopIteration.value.setter(StopIteration__value__set)
+StopIteration.value = property(fget=StopIteration__value__get, fset=StopIteration__value__set)
105
StopIteration.__repr__ = StopIteration__repr__
106
107
# These errors are just an alias of OSError (i.e. 'EnvironmentError is OSError == True')
0 commit comments