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
ec52ae29
Commit
ec52ae29
authored
Nov 26, 2013
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove run() (alias for wait())
parent
bfe58e61
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
3 deletions
+1
-3
gevent/__init__.py
gevent/__init__.py
+0
-2
gevent/hub.py
gevent/hub.py
+1
-1
No files found.
gevent/__init__.py
View file @
ec52ae29
...
...
@@ -43,8 +43,6 @@ try:
except
ImportError
:
__all__
.
remove
(
'fork'
)
run
=
wait
# XXX to be deleted (soon)
# the following makes hidden imports visible to freezing tools like
# py2exe. see https://github.com/surfly/gevent/issues/181
...
...
gevent/hub.py
View file @
ec52ae29
...
...
@@ -62,7 +62,7 @@ def sleep(seconds=0, ref=True):
*seconds* may be specified as an integer, or a float if fractional seconds
are desired.
If *ref* is false, the greenlet running sleep() will not prevent gevent.
run
()
If *ref* is false, the greenlet running sleep() will not prevent gevent.
wait
()
from exiting.
"""
hub
=
get_hub
()
...
...
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