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
5861b021
Commit
5861b021
authored
Jul 31, 2011
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update test__greenlet.py
parent
6a0d0853
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
greentest/test__greenlet.py
greentest/test__greenlet.py
+3
-3
No files found.
greentest/test__greenlet.py
View file @
5861b021
...
...
@@ -575,7 +575,7 @@ class TestBasic(greentest.TestCase):
g
=
gevent
.
Greenlet
(
func
,
0.01
,
return_value
=
5
)
g
.
link
(
lambda
x
:
link_test
.
append
(
x
))
assert
not
g
assert
not
g
,
bool
(
g
)
assert
not
g
.
dead
assert
not
g
.
started
assert
not
g
.
ready
()
...
...
@@ -584,7 +584,7 @@ class TestBasic(greentest.TestCase):
assert
g
.
exception
is
None
g
.
start
()
assert
not
g
assert
g
# changed
assert
not
g
.
dead
assert
g
.
started
# changed
assert
not
g
.
ready
()
...
...
@@ -593,7 +593,7 @@ class TestBasic(greentest.TestCase):
assert
g
.
exception
is
None
gevent
.
sleep
(
0.001
)
assert
g
# changed
assert
g
assert
not
g
.
dead
assert
g
.
started
assert
not
g
.
ready
()
...
...
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