Skip to content

Commit

Permalink
Updated version to .6, and readme to have a bit better info.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgalanakis committed Jul 4, 2014
1 parent e12293c commit b1b370f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
16 changes: 10 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@
goless
======

The **goless** library provides **Go** programming language
semantics, such as channels, select, and goroutines,
built on top of **gevent**, **PyPy**, or **Stackless Python**.
It works with PyPy, CPython, and Stackless Python interpreters.
Using the **goless** library, you can write **Go** language
style concurrent programs in Python.
**goless** provides functionality for channels, select, and goroutines.
**goless** allows you to use Go's beautiful and elegant
concurrency programming model,
but in the familiar and comfortable language of Python.

Using goless, you can write Go-style concurrent programs in Python.
goless works on top of **gevent**, **PyPy**, or **Stackless Python**.
It works with PyPy, CPython, and Stackless Python interpreters,
and Python 2.6 to 3.4.

**goless** has extensive documentation and examples.
**goless** has extensive testing, documentation and examples.
See https://goless.readthedocs.org/ for more information.
4 changes: 1 addition & 3 deletions goless/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,13 @@

from .backends import current as _be



# noinspection PyUnresolvedReferences
from .channels import chan, ChannelClosed
# noinspection PyUnresolvedReferences
from .selecting import dcase, rcase, scase, select


version_info = 0, 5, 1
version_info = 0, 6, 0
version = '.'.join([str(v) for v in version_info])

__version__ = version
Expand Down

0 comments on commit b1b370f

Please sign in to comment.