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
5aa4bb80
Commit
5aa4bb80
authored
7 years ago
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add PoolFull to __all__
parent
28cba07d
master
y/pydbg
1.4.0
1.3.7
1.3.6
1.3.5
1.3.4
1.3.3
1.3.2
1.3.2.post0
1.3.1
1.3.0
1.3b2
1.3b1
1.3a2
1.3a1
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
src/gevent/pool.py
src/gevent/pool.py
+2
-3
No files found.
src/gevent/pool.py
View file @
5aa4bb80
...
...
@@ -28,7 +28,7 @@ from gevent.timeout import Timeout
from
gevent.event
import
Event
from
gevent.lock
import
Semaphore
,
DummySemaphore
__all__
=
[
'Group'
,
'Pool'
,
'Full'
]
__all__
=
[
'Group'
,
'Pool'
,
'
Pool
Full'
]
class
IMapUnordered
(
Greenlet
):
...
...
@@ -650,9 +650,8 @@ class Failure(object):
class
PoolFull
(
QueueFull
):
"""
Raised when a Pool is full and an attempt was made to
add a new greenlet to it.
add a new greenlet to it
in non-blocking mode
.
"""
pass
class
Pool
(
Group
):
...
...
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