Set if flow graph should allow modification of code from within the graph view
(self)
| 727 | |
| 728 | @property |
| 729 | def allows_patching(self): |
| 730 | """Set if flow graph should allow modification of code from within the graph view""" |
| 731 | return self.is_option_set(FlowGraphOption.FlowGraphAllowsPatching) |
| 732 | |
| 733 | @allows_patching.setter |
| 734 | def allows_patching(self, value): |
nothing calls this directly
no test coverage detected