Skip to content

Commit 60bfda9

Browse files
committed
CI: Test on Python 3.13
1 parent 6748a78 commit 60bfda9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
test:
66
strategy:
77
matrix:
8-
python_version: ['3.10', '3.12']
8+
python_version: ['3.10', '3.12', '3.13']
99
os: [ubuntu-latest]
1010
runs-on: ${{ matrix.os }}
1111
timeout-minutes: 30

pwnlib/util/safeeval.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def _get_opcodes(codeobj):
2929
Extract the actual opcodes as a list from a code object
3030
3131
>>> c = compile("[1 + 2, (1,2)]", "", "eval")
32-
>>> _get_opcodes(c) # doctest: +ELLIPSIS
32+
>>> _get_opcodes(c) # doctest: +SKIP
3333
[...100, 100, 103, 83]
3434
"""
3535
import dis

0 commit comments

Comments
 (0)