From 0c80f1fca6285c9aafd887be20d6c3e18027e1b8 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Tue, 14 Jan 2014 11:26:12 -0500 Subject: [PATCH] Remove last traces of Tulup (now asyncio) --- README | 4 ++-- greenio/socket.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README b/README index 56dc989..b2dcccf 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ -Experimental support for greenlets in Tulip (PEP 3156). +Support for greenlets in asyncio. -Requires Tulip, greenlet and Python 3.3. +Requires asyncio, greenlet and Python 3.3 / 3.4. See examples and unittests for details. To run tests: "$ python3 runtests.py" diff --git a/greenio/socket.py b/greenio/socket.py index d3e3904..d700fb6 100644 --- a/greenio/socket.py +++ b/greenio/socket.py @@ -2,7 +2,7 @@ # Copyright (c) 2013 Yury Selivanov # License: Apache 2.0 ## -"""Greensocket (non-blocking) for Tulip. +"""Greensocket (non-blocking) for asyncio. Use ``greenio.socket`` in the same way as you would use stdlib's ``socket.socket`` in ``greenio.task`` tasks or coroutines invoked