Replace get/set/del functions of a property
(old, new)
| 420 | |
| 421 | |
| 422 | def 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 | |
| 429 | def isinstance2(a, b, typ): |
nothing calls this directly
no test coverage detected
searching dependent graphs…