File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 27
27
- ["3.9", "py39"]
28
28
- ["3.10", "py310"]
29
29
- ["3.11", "py311"]
30
- - ["3.12.0-alpha.7 ", "py312"]
30
+ - ["3.12.0-beta.2 ", "py312"]
31
31
- ["3.9", "docs"]
32
32
- ["3.9", "coverage"]
33
33
- ["3.9", "py39-datetime"]
Original file line number Diff line number Diff line change 2
2
# https://github.com/zopefoundation/meta/tree/master/config/pure-python
3
3
[meta ]
4
4
template = " pure-python"
5
- commit-id = " fe63cb4c "
5
+ commit-id = " 1814282a "
6
6
7
7
[python ]
8
8
with-pypy = false
Original file line number Diff line number Diff line change 10
10
from RestrictedPython import compile_restricted_single
11
11
from RestrictedPython ._compat import IS_PY38_OR_GREATER
12
12
from RestrictedPython ._compat import IS_PY310_OR_GREATER
13
- from RestrictedPython ._compat import IS_PY312_OR_GREATER
13
+ from RestrictedPython ._compat import IS_PY311_OR_GREATER
14
14
from tests .helper import restricted_eval
15
15
16
16
@@ -103,7 +103,7 @@ def test_compile__compile_restricted_exec__5():
103
103
assert result .code is None
104
104
assert result .warnings == []
105
105
assert result .used_names == {}
106
- if IS_PY312_OR_GREATER :
106
+ if IS_PY311_OR_GREATER :
107
107
assert result .errors == (
108
108
'Line None: SyntaxError: source code string cannot contain null'
109
109
' bytes at statement: None' ,)
You can’t perform that action at this time.
0 commit comments