Commit 2ce1fd3c authored by Jason Madden's avatar Jason Madden

remove deprecated gevent.coros module.

parent 5a6b79f0
...@@ -7,10 +7,12 @@ ...@@ -7,10 +7,12 @@
1.2a1 (unreleased) 1.2a1 (unreleased)
================== ==================
- Remove support for Python 2.6.
- Update libev to version 4.22. - Update libev to version 4.22.
- Update tblib to 1.3.0. - 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>`_). - 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) 1.1.0 (Mar 5, 2016)
=================== ===================
......
# 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__
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment