FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-future/src/queue/__init__.py at master · dev-zero/python-future · GitHub
dev-zero
/
python-future
Public
forked from
PythonCharmers/python-future
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-future
/
src
/
queue
/
__init__.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
10 lines (9 loc) · 375 Bytes
Breadcrumbs
python-future
/
src
/
queue
/
__init__.py
Copy path
File metadata and controls
10 lines (9 loc) · 375 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
from
__future__
import
absolute_import
import
sys
__future_module__
=
True
if
sys
.
version_info
[
0
]
<
3
:
from
Queue
import
*
else
:
raise
ImportError
(
'This package should not be accessible on Python 3. '
'Either you are trying to run from the python-future src folder '
'or your installation of python-future is corrupted.'
)
Back
|
FazBrowse Home
|
New Git URL