Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python.announce > #85
| Path | csiph.com!x330-a1.tempe.blueboxinc.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!feeder.news-service.com!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <denis.bilenko@gmail.com> |
| X-Original-To | python-announce-list@python.org |
| Delivered-To | python-announce-list@mail.python.org |
| X-Spam-Status | OK 0.001 |
| X-Spam-Evidence | '*H*': 1.00; '*S*': 0.00; 'subject:released': 0.03; 'high-level': 0.05; 'modules.': 0.07; 'python': 0.07; 'url:pypi': 0.09; 'homepage:': 0.09; 'loop.': 0.09; 'release,': 0.09; 'sockets': 0.09; 'api': 0.11; 'library': 0.15; 'changelog': 0.16; 'patching': 0.16; 'released.': 0.16; 'synchronous': 0.16; 'url:changelog': 0.16; 'wsgi': 0.16; 'modules': 0.20; 'cheers,': 0.20; 'linux,': 0.22; 'loop': 0.22; "what's": 0.24; 'example': 0.24; 'received:209.85.220': 0.26; "i'm": 0.26; 'message- id:@mail.gmail.com': 0.28; 'server': 0.29; 'bugs': 0.29; 'execution': 0.33; '(for': 0.33; 'uses': 0.34; 'there': 0.35; 'concepts': 0.35; 'dns': 0.35; 'fixing': 0.35; 'ssl': 0.35; 'event': 0.37; 'it?': 0.37; 'received:209.85': 0.37; 'url:python': 0.37; 'to:addr:python-announce-list': 0.38; 'received:google.com': 0.38; 'url:org': 0.38; 'announce': 0.39; 'to:addr:python.org': 0.39; 'received:209': 0.39; 'header:Received:5': 0.40; 'units': 0.60; 'networking': 0.60; 'here:': 0.61; 'full': 0.62; 'become': 0.70; 'lightweight': 0.84; 'cooperative': 0.91 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:from:date:message-id:subject:to :content-type:content-transfer-encoding; bh=D+W1/3moEqtFaGND+R2xn4XZAk4O79mtcx6mbCUJTBk=; b=EGOaLlFtcY8diJnmSfMjOIhgHF4OlNvyYWWCirsvRIhKZCuZXJXXGNJef6i54bl2o0 ICfmDzp+NqpfqLxr1guXM8Pqe6XYtXPuZ1Acz4jJHS/rT1WJzgq/MutyexDeoHQHZxI8 ZxXwWjjDIm6sI4PStidYt8JPB5Vn6i/5AP28Y= |
| DomainKey-Signature | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type :content-transfer-encoding; b=gh5bETnM6VoJzfEMRl9dBeA7FUhLD33xsBW3KGpYrpzSOizk4asxDgDKwt/1WqU2sk p1V3zmd0gGQBwZ9Rk5ET12Xo96rfSknuygRQVsBwODXkH02G4vAKy+5gm5+e5NUWP4e9 JG32lj9CtH+m12HDWxAPS4DkcrVC9egs5K+Jc= |
| MIME-Version | 1.0 |
| From | Denis Bilenko <denis.bilenko@gmail.com> |
| Date | Mon, 11 Apr 2011 15:54:54 +0700 |
| Subject | gevent 0.13.4 released |
| To | python-announce-list@python.org |
| Content-Type | text/plain; charset=ISO-8859-1 |
| Content-Transfer-Encoding | quoted-printable |
| X-Mailman-Approved-At | Mon, 11 Apr 2011 14:57:43 +0200 |
| X-BeenThere | python-announce-list@python.org |
| X-Mailman-Version | 2.1.12 |
| Precedence | list |
| Reply-To | python-list@python.org |
| List-Id | Announcement-only list for the Python programming language <python-announce-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-announce-list>, <mailto:python-announce-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-announce-list> |
| List-Post | <mailto:python-announce-list@python.org> |
| List-Help | <mailto:python-announce-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-announce-list>, <mailto:python-announce-list-request@python.org?subject=subscribe> |
| Approved | python-announce-list@python.org |
| Newsgroups | comp.lang.python.announce |
| Message-ID | <mailman.215.1302526663.9059.python-announce-list@python.org> (permalink) |
| Lines | 35 |
| NNTP-Posting-Host | 82.94.164.166 |
| X-Trace | 1302526664 news.xs4all.nl 81479 [::ffff:82.94.164.166]:37618 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | x330-a1.tempe.blueboxinc.net comp.lang.python.announce:85 |
Show key headers only | View raw
Hi! I'm happy to announce that Gevent 0.13.4 is released. What is it? gevent is a coroutine-based Python networking library that uses greenlet to provide a high-level synchronous API on top of libevent event loop. Features include: * Fast event loop based on libevent (epoll on Linux, kqueue on FreeBSD). * Lightweight execution units based on greenlet. * API that re-uses concepts from the Python standard library (for example there are Events and Queues). * Cooperative sockets with ssl support. * DNS queries performed through libevent-dns. * Monkey patching utility to get 3rd party modules to become cooperative. * Fast WSGI server based on libevent-http. Homepage: http://www.gevent.org/ What's new in 0.13.4? Gevent 0.13.4 is a maintenance release, fixing a number of bugs in various modules. Read the full changelog here: http://www.gevent.org/changelog.html Get it from PyPI: http://pypi.python.org/pypi/gevent Cheers, Denis.
Back to comp.lang.python.announce | Previous | Next | Find similar | Unroll thread
gevent 0.13.4 released Denis Bilenko <denis.bilenko@gmail.com> - 2011-04-11 15:54 +0700
csiph-web