We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 29aecc0 + 174df8a commit a39e0aeCopy full SHA for a39e0ae
1 file changed
flowsignal.py
@@ -21,14 +21,12 @@
21
return address need to be added to the return stack.
22
23
>>> flowsignal = FlowSignal(ftype=FlowSignal.RETURN)
24
->>> flowsignal.ftarget is None
25
-True
26
->>> flowsignal.ftype
27
-5
+>>> print(flowsignal.ftarget)
+-1
28
>>> flowsignal = FlowSignal(ftarget=100, ftype=FlowSignal.SIMPLE_JUMP)
29
->>> flowsignal.ftarget
30
100
31
+>>> print(flowsignal.ftype)
32
0
33
"""
34
0 commit comments