Commit 283a1558 authored by Kirill Smelkov's avatar Kirill Smelkov

pygolang v0.0.6.post2

A build fix wrt gevent-1.5 + benchmarks for nogil go and channels.
parent 4d667fa3
...@@ -303,7 +303,7 @@ can be used to multiplex on several channels. For example:: ...@@ -303,7 +303,7 @@ can be used to multiplex on several channels. For example::
cdef cbool ok cdef cbool ok
cdef int j = 33 cdef int j = 33
_ = select([ _ = select([
chi.recvs(&i) # 0 chi.recvs(&i), # 0
chi.recvs(&i, &ok), # 1 chi.recvs(&i, &ok), # 1
chi.sends(&j), # 2 chi.sends(&j), # 2
chp.recvs(&p), # 3 chp.recvs(&p), # 3
......
...@@ -33,7 +33,7 @@ See also package golang.pyx which provides similar functionality for Cython nogi ...@@ -33,7 +33,7 @@ See also package golang.pyx which provides similar functionality for Cython nogi
from __future__ import print_function, absolute_import from __future__ import print_function, absolute_import
__version__ = "0.0.6.post1" __version__ = "0.0.6.post2"
__all__ = ['go', 'chan', 'select', 'default', 'nilchan', 'defer', 'panic', __all__ = ['go', 'chan', 'select', 'default', 'nilchan', 'defer', 'panic',
'recover', 'func', 'error', 'b', 'u', 'gimport'] 'recover', 'func', 'error', 'b', 'u', 'gimport']
......
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