selectors34 is a backport of the selectors module from Python 3.4. The
selectors module written by Charles-François Natali. This port is based on
Victor Stinner's trollius/selectors.py port.
To install selectors34 via pip:
$ pip install selectors34
For best compatibility for Python 3.4, import selectors34 like:
try:
import selectors
except ImportError:
import selectors34 as selectors
| Documentation: | |
|---|---|
| PyPI: | |
| Issue tracker: | https://bugs.python.org/ (upstream) |
| Issue tracker: | |
| Supported versions: | Python 2.6, 2.7 and 3.3 |
| License: | Python Software Foundation License |
| Build status: |
- Bump version number in
setup.py - Update
CHANGELOG.rst - Run tests via
tox - Install requirements to make a release:
pip install -r requirements-dev.txt - Make a new release on the PyPI test server:
make test-release - Create a tag:
git tag X.Y.X - Make the actual release:
make release