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
55b00498
Commit
55b00498
authored
Jul 09, 2015
by
Manuel Barkhau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pyp3 compat fixes
parent
3d622837
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
gevent/pywsgi.py
gevent/pywsgi.py
+1
-1
gevent/threading.py
gevent/threading.py
+1
-1
No files found.
gevent/pywsgi.py
View file @
55b00498
...
...
@@ -453,7 +453,7 @@ class WSGIHandler(object):
finally
:
# Avoid dangling circular ref
exc_info
=
None
self
.
code
=
int
(
status
.
split
(
' '
,
1
)[
0
])
self
.
code
=
int
(
status
.
split
(
b
' '
,
1
)[
0
])
self
.
status
=
status
self
.
response_headers
=
headers
...
...
gevent/threading.py
View file @
55b00498
...
...
@@ -41,7 +41,7 @@ if PYPY:
# otherwise we get a new DummyThread, which cannot be joined.
# Fixes tests in test_threading_2
if
_get_ident
()
not
in
__threading__
.
_active
and
len
(
__threading__
.
_active
)
==
1
:
k
,
v
=
__threading__
.
_active
.
items
()[
0
]
k
,
v
=
next
(
iter
(
__threading__
.
_active
.
items
()))
del
__threading__
.
_active
[
k
]
__threading__
.
_active
[
_get_ident
()]
=
v
...
...
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