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
770bb4a3
Commit
770bb4a3
authored
9 years ago
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PyPy: Fix a TypeError in gevent.idle. Fixes #639.
parent
096c7836
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
changelog.rst
changelog.rst
+2
-0
gevent/corecffi.py
gevent/corecffi.py
+2
-1
No files found.
changelog.rst
View file @
770bb4a3
...
...
@@ -31,6 +31,8 @@ Unreleased
since they are usually out of the programmer's control and caught
explicitly. (Programming errors like ``TypeError`` are still
printed.) Reported in :issue:`617` by Jay Oster and Carlos Sanchez.
- PyPy: Fix a ``TypeError`` from ``gevent.idle()``. Reported in
:issue:`639` by chilun2008.
.. _future: http://python-future.org
.. _bench_sendall.py: https://raw.githubusercontent.com/gevent/gevent/master/greentest/bench_sendall.py
...
...
This diff is collapsed.
Click to expand it.
gevent/corecffi.py
View file @
770bb4a3
...
...
@@ -228,7 +228,8 @@ _watcher_types = ['ev_io',
'ev_fork'
,
'ev_async'
,
'ev_child'
,
'ev_stat'
,
]
'ev_stat'
,
'ev_idle'
,
]
_source
=
""" // passed to the real C compiler
#define LIBEV_EMBED 1
...
...
This diff is collapsed.
Click to expand it.
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