Skip to content

Commit a39e0ae

Browse files
authored
Merge pull request #93 from richpl/revert-87-pytest
Revert "Add a GitHub Action to run pytest"
2 parents 29aecc0 + 174df8a commit a39e0ae

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

flowsignal.py

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

0 commit comments

Comments
 (0)