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
f0c12ea1
Commit
f0c12ea1
authored
Mar 30, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More clarifying comments.
parent
fc8db79f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
src/greentest/monkey_package/issue302monkey.py
src/greentest/monkey_package/issue302monkey.py
+10
-3
No files found.
src/greentest/monkey_package/issue302monkey.py
View file @
f0c12ea1
...
@@ -9,12 +9,19 @@ else:
...
@@ -9,12 +9,19 @@ else:
print
(
__file__
)
print
(
__file__
)
if
sys
.
version_info
[:
2
]
==
(
2
,
7
):
if
sys
.
version_info
[:
2
]
==
(
2
,
7
):
# Prior to gevent 1.3, 'python -m gevent.monkey' guaranteed this to be
# None for all python versions.
print
(
__package__
==
None
)
print
(
__package__
==
None
)
else
:
else
:
if
sys
.
argv
[
1
]
==
'patched'
:
if
sys
.
argv
[
1
]
==
'patched'
:
# __package__ is handled differently, for some reason,
# __package__ is handled differently, for some reason, and
# and runpy doesn't let us override it. When we call it,
# runpy doesn't let us override it. When we call it, it
# it becomes ''
# becomes ''. This appears to be against the documentation for
# runpy, which says specifically "If the supplied path
# directly references a script file (whether as source or as
# precompiled byte code), then __file__ will be set to the
# supplied path, and __spec__, __cached__, __loader__ and
# __package__ will all be set to None."
print
(
__package__
==
''
)
print
(
__package__
==
''
)
else
:
else
:
# but the interpreter sets it to None
# but the interpreter sets it to None
...
...
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