Skip to content

Commit 25f1026

Browse files
authored
Merge pull request #87 from cclauss/pytest
Add a GitHub Action to run pytest
2 parents be9cf11 + 354f464 commit 25f1026

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

flowsignal.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,14 @@
2121
return address need to be added to the return stack.
2222
2323
>>> flowsignal = FlowSignal(ftype=FlowSignal.RETURN)
24-
>>> print(flowsignal.ftarget)
25-
-1
24+
>>> flowsignal.ftarget is None
25+
True
26+
>>> flowsignal.ftype
27+
5
2628
>>> flowsignal = FlowSignal(ftarget=100, ftype=FlowSignal.SIMPLE_JUMP)
27-
>>> print(flowsignal.ftarget)
29+
>>> flowsignal.ftarget
2830
100
29-
>>> print(flowsignal.ftype)
31+
>>> flowsignal.ftype
3032
0
3133
"""
3234

0 commit comments

Comments
 (0)