MCPcopy Create free account
hub / github.com/ipython/ipython / update_property

Function update_property

IPython/extensions/autoreload.py:320–324  ·  view source on GitHub ↗

Replace get/set/del functions of a property

(old, new)

Source from the content-addressed store, hash-verified

318
319
320def update_property(old, new):
321 """Replace get/set/del functions of a property"""
322 update_generic(old.fdel, new.fdel)
323 update_generic(old.fget, new.fget)
324 update_generic(old.fset, new.fset)
325
326
327def isinstance2(a, b, typ):

Callers

nothing calls this directly

Calls 1

update_genericFunction · 0.85

Tested by

no test coverage detected