We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf87407 commit 6005648Copy full SHA for 6005648
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,8 @@
1
+name: ci
2
+on: [pull_request, push]
3
+jobs:
4
+ pytest:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v6
8
+ - run: pipx run pytest --doctest-modules
flowsignal.py
@@ -21,12 +21,14 @@
21
return address need to be added to the return stack.
22
23
>>> flowsignal = FlowSignal(ftype=FlowSignal.RETURN)
24
->>> print(flowsignal.ftarget)
25
--1
+>>> flowsignal.ftarget is None
+True
26
+>>> flowsignal.ftype
27
+5
28
>>> flowsignal = FlowSignal(ftarget=100, ftype=FlowSignal.SIMPLE_JUMP)
29
+>>> flowsignal.ftarget
30
100
->>> print(flowsignal.ftype)
31
32
0
33
"""
34
0 commit comments