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
592b71cc
Commit
592b71cc
authored
Dec 10, 2012
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Popen.poll(): sleep a little if sig_pending is set
parent
dc3f515c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
gevent/subprocess.py
gevent/subprocess.py
+6
-1
No files found.
gevent/subprocess.py
View file @
592b71cc
...
...
@@ -7,7 +7,7 @@ import gc
import
signal
import
traceback
from
gevent.event
import
AsyncResult
from
gevent.hub
import
get_hub
,
linkproxy
from
gevent.hub
import
get_hub
,
linkproxy
,
sleep
,
getcurrent
from
gevent.fileobject
import
FileObject
from
gevent.greenlet
import
Greenlet
,
joinall
spawn
=
Greenlet
.
spawn
...
...
@@ -764,6 +764,11 @@ class Popen(object):
"""Check if child process has terminated. Returns returncode
attribute.
"""
if
self
.
returncode
is
None
:
if
get_hub
()
is
not
getcurrent
():
sig_pending
=
getattr
(
self
.
_loop
,
'sig_pending'
,
True
)
if
sig_pending
:
sleep
(
0.00001
)
return
self
.
returncode
def
wait
(
self
,
timeout
=
None
):
...
...
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