Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
0ec9be57
Commit
0ec9be57
authored
Mar 18, 2021
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.29.x'
parents
9a761a63
d21f970f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
5 deletions
+10
-5
.travis.yml
.travis.yml
+0
-1
appveyor.yml
appveyor.yml
+1
-0
tests/run/test_exceptions.pyx
tests/run/test_exceptions.pyx
+9
-4
No files found.
.travis.yml
View file @
0ec9be57
...
...
@@ -102,7 +102,6 @@ matrix:
-
env
:
BACKEND=c EXCLUDE="--listfile=tests/pypy_bugs.txt bugs"
-
env
:
BACKEND=c EXCLUDE="--listfile=tests/pypy_bugs.txt --listfile=tests/pypy2_bugs.txt bugs"
before_install
:
-
|
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
...
...
appveyor.yml
View file @
0ec9be57
...
...
@@ -88,6 +88,7 @@ branches:
only
:
-
master
-
release
-
0.29.x
init
:
-
"
ECHO
Python
%PYTHON_VERSION%
(%PYTHON_ARCH%bit)
from
%PYTHON%"
...
...
tests/run/test_exceptions.pyx
View file @
0ec9be57
...
...
@@ -13,11 +13,16 @@ import pickle
import
weakref
import
errno
from
test.support
import
(
TESTFN
,
captured_stderr
,
check_impl_detail
,
check_warnings
,
gc_collect
,
from
test.support
import
(
captured_stderr
,
check_impl_detail
,
gc_collect
,
# no_tracing, cpython_only,
unlink
,
import_module
,
script_helper
,
SuppressCrashReport
)
script_helper
,
SuppressCrashReport
)
try
:
from
test.support.os_helper
import
TESTFN
,
unlink
from
test.support.warnings_helper
import
check_warnings
from
test.support.import_helper
import
import_module
except
ImportError
:
# Python 3.9 and older
from
test.support
import
check_warnings
no_tracing
=
unittest
.
skip
(
"For nested functions, Cython generates a C call without recursion checks."
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment