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
1c8c7375
Commit
1c8c7375
authored
Feb 16, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify test matrix for old py3 versions.
parent
d43e0b8c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
Makefile
Makefile
+2
-2
src/gevent/threading.py
src/gevent/threading.py
+4
-0
No files found.
Makefile
View file @
1c8c7375
...
@@ -181,10 +181,10 @@ test-py27: $(PY27)
...
@@ -181,10 +181,10 @@ test-py27: $(PY27)
PYTHON
=
python2.7.14
PATH
=
$(BUILD_RUNTIMES)
/versions/python2.7.14/bin:
$(PATH)
make develop lint leaktest allbackendtest
PYTHON
=
python2.7.14
PATH
=
$(BUILD_RUNTIMES)
/versions/python2.7.14/bin:
$(PATH)
make develop lint leaktest allbackendtest
test-py34
:
$(PY34)
test-py34
:
$(PY34)
PYTHON
=
python3.4.7
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.4.7/bin:
$(PATH)
make develop
allbackend
test
PYTHON
=
python3.4.7
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.4.7/bin:
$(PATH)
make develop
basic
test
test-py35
:
$(PY35)
test-py35
:
$(PY35)
PYTHON
=
python3.5.4
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.5.4/bin:
$(PATH)
make develop
allbackend
test
PYTHON
=
python3.5.4
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.5.4/bin:
$(PATH)
make develop
basic
test
test-py36
:
$(PY36)
test-py36
:
$(PY36)
PYTHON
=
python3.6.4
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.6.4/bin:
$(PATH)
make develop allbackendtest
PYTHON
=
python3.6.4
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.6.4/bin:
$(PATH)
make develop allbackendtest
...
...
src/gevent/threading.py
View file @
1c8c7375
...
@@ -87,6 +87,10 @@ class _DummyThread(_DummyThread_):
...
@@ -87,6 +87,10 @@ class _DummyThread(_DummyThread_):
# For the same reason, instances of this class will cleanup their own entry
# For the same reason, instances of this class will cleanup their own entry
# in ``threading._active``
# in ``threading._active``
# This class also solves a problem forking process with subprocess: after forking,
# Thread.__stop is called, which throws an exception when __block doesn't
# exist.
# Capture the static things as class vars to save on memory/
# Capture the static things as class vars to save on memory/
# construction time.
# construction time.
# In Py2, they're all private; in Py3, they become protected
# In Py2, they're all private; in Py3, they become protected
...
...
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