MCPcopy Index your code
hub / github.com/ipython/ipython / update_property

Function update_property

IPython/extensions/autoreload.py:422–426  ·  view source on GitHub ↗

Replace get/set/del functions of a property

(old, new)

Source from the content-addressed store, hash-verified

420
421
422def update_property(old, new):
423 """Replace get/set/del functions of a property"""
424 update_generic(old.fdel, new.fdel)
425 update_generic(old.fget, new.fget)
426 update_generic(old.fset, new.fset)
427
428
429def isinstance2(a, b, typ):

Callers

nothing calls this directly

Calls 1

update_genericFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…