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
a616644a
Commit
a616644a
authored
Feb 05, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add absolute_import to two modules where we imported time.
parent
15ebc207
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/gevent/_socket2.py
src/gevent/_socket2.py
+2
-0
src/gevent/pywsgi.py
src/gevent/pywsgi.py
+3
-1
No files found.
src/gevent/_socket2.py
View file @
a616644a
...
...
@@ -2,6 +2,8 @@
"""
Python 2 socket module.
"""
from
__future__
import
absolute_import
# Our import magic sadly makes this warning useless
# pylint: disable=undefined-variable
...
...
src/gevent/pywsgi.py
View file @
a616644a
# Copyright (c) 2005-2009, eventlet contributors
# Copyright (c) 2009-201
5
, gevent contributors
# Copyright (c) 2009-201
8
, gevent contributors
"""
A pure-Python, gevent-friendly WSGI server.
...
...
@@ -9,6 +9,8 @@ created for each request. The server can be customized to use
different subclasses of :class:`WSGIHandler`.
"""
from
__future__
import
absolute_import
# FIXME: Can we refactor to make smallor?
# pylint:disable=too-many-lines
...
...
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