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
2ce1fd3c
Commit
2ce1fd3c
authored
Mar 10, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove deprecated gevent.coros module.
parent
5a6b79f0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
7 deletions
+3
-7
changelog.rst
changelog.rst
+3
-1
gevent/coros.py
gevent/coros.py
+0
-6
No files found.
changelog.rst
View file @
2ce1fd3c
...
...
@@ -7,10 +7,12 @@
1.2a1 (unreleased)
==================
- Remove support for Python 2.6.
- Update libev to version 4.22.
- Update tblib to 1.3.0.
- Update c-ares to version 1.11.0 (`release notes <https://raw.githubusercontent.com/c-ares/c-ares/cares-1_11_0/RELEASE-NOTES>`_).
- Remove support for Python 2.6.
- Remove module ``gevent.coros`` which was replaced by ``gevent.lock``
and has been deprecated since 1.0b2.
1.1.0 (Mar 5, 2016)
===================
...
...
gevent/coros.py
deleted
100644 → 0
View file @
5a6b79f0
# This module definitely remains in 1.0.x, probably in versions after that too.
import
warnings
warnings
.
warn
(
'gevent.coros has been renamed to gevent.lock'
,
DeprecationWarning
,
stacklevel
=
2
)
from
gevent.lock
import
*
from
gevent.lock
import
__all__
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