Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
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
gevent
Commits
5ce29682
Commit
5ce29682
authored
Mar 23, 2020
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Same issue on PyPy2 now as PyPy3 had.
parent
0e219e4a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
src/gevent/tests/test__makefile_ref.py
src/gevent/tests/test__makefile_ref.py
+4
-1
No files found.
src/gevent/tests/test__makefile_ref.py
View file @
5ce29682
...
...
@@ -54,12 +54,15 @@ class Test(greentest.TestCase):
raise
raise
AssertionError
(
'NOT RAISED EBADF: %r() returned %r'
%
(
func
,
result
))
if
WIN
or
(
PYPY
and
PY3
and
greentest
.
LINUX
):
if
WIN
or
(
PYPY
and
greentest
.
LINUX
):
def
__assert_fd_open
(
self
,
fileno
):
# We can't detect open file descriptors on Windows.
# On PyPy 3.6-7.3 on Travis CI (linux), for some reason the
# client file descriptors don't always show as open. Don't know why,
# was fine in 7.2.
# On March 23 2020 we had to pin psutil back to a version
# for PyPy 2 (see setup.py) and this same problem started happening there.
# PyPy on macOS was unaffected.
pass
else
:
def
__assert_fd_open
(
self
,
fileno
):
...
...
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