MCPcopy Index your code
hub / github.com/python/cpython / setx

Method setx

Lib/test/test_sys.py:1751–1751  ·  view source on GitHub ↗
(self, value)

Source from the content-addressed store, hash-verified

1749 class C(object):
1750 def getx(self): return self.__x
1751 def setx(self, value): self.__x = value
1752 def delx(self): del self.__x
1753 x = property(getx, setx, delx, "")
1754 check(x, size('5Pi'))

Callers 6

test_setx_and_setyMethod · 0.45
pushMethod · 0.45
_close_gap_from_iMethod · 0.45
_open_gap_from_iMethod · 0.45
insertMethod · 0.45
pushMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected