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
c655ef40
Commit
c655ef40
authored
Dec 01, 2013
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unused imports
parent
596043df
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
3 deletions
+2
-3
gevent/fileobject.py
gevent/fileobject.py
+1
-1
gevent/select.py
gevent/select.py
+0
-1
greentest/test__issue302monkey.py
greentest/test__issue302monkey.py
+1
-1
No files found.
gevent/fileobject.py
View file @
c655ef40
...
@@ -8,7 +8,7 @@ from gevent.lock import Semaphore, DummySemaphore
...
@@ -8,7 +8,7 @@ from gevent.lock import Semaphore, DummySemaphore
try
:
try
:
from
fcntl
import
fcntl
,
F_SETFL
from
fcntl
import
fcntl
except
ImportError
:
except
ImportError
:
fcntl
=
None
fcntl
=
None
...
...
gevent/select.py
View file @
c655ef40
# Copyright (c) 2009-2011 Denis Bilenko. See LICENSE for details.
# Copyright (c) 2009-2011 Denis Bilenko. See LICENSE for details.
from
__future__
import
absolute_import
from
__future__
import
absolute_import
from
gevent.timeout
import
Timeout
from
gevent.event
import
Event
from
gevent.event
import
Event
from
gevent.hub
import
get_hub
from
gevent.hub
import
get_hub
...
...
greentest/test__issue302monkey.py
View file @
c655ef40
...
@@ -2,7 +2,7 @@ import sys
...
@@ -2,7 +2,7 @@ import sys
if
'gevent'
not
in
sys
.
modules
:
if
'gevent'
not
in
sys
.
modules
:
from
subprocess
import
Popen
,
PIPE
from
subprocess
import
Popen
args
=
[
sys
.
executable
,
'-m'
,
'gevent.monkey'
,
__file__
]
args
=
[
sys
.
executable
,
'-m'
,
'gevent.monkey'
,
__file__
]
p
=
Popen
(
args
)
p
=
Popen
(
args
)
code
=
p
.
wait
()
code
=
p
.
wait
()
...
...
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