From a728368a0840805ff9fe79fee8de481068db812e Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 3 May 2014 23:04:30 +0300 Subject: [PATCH] asyncio_micro: Rename from asyncio. As this is not compliant with asyncio API, can't be called asyncio, and "micro" is just good moniker for what it's intended to be. --- asyncio/asyncio.py => asyncio_micro/asyncio_micro.py | 0 {asyncio => asyncio_micro}/test_call_soon.py | 2 +- {asyncio => asyncio_micro}/test_http_client.py | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename asyncio/asyncio.py => asyncio_micro/asyncio_micro.py (100%) rename {asyncio => asyncio_micro}/test_call_soon.py (83%) rename {asyncio => asyncio_micro}/test_http_client.py (95%) diff --git a/asyncio/asyncio.py b/asyncio_micro/asyncio_micro.py similarity index 100% rename from asyncio/asyncio.py rename to asyncio_micro/asyncio_micro.py diff --git a/asyncio/test_call_soon.py b/asyncio_micro/test_call_soon.py similarity index 83% rename from asyncio/test_call_soon.py rename to asyncio_micro/test_call_soon.py index 8ab5cb87..42a169cf 100644 --- a/asyncio/test_call_soon.py +++ b/asyncio_micro/test_call_soon.py @@ -1,4 +1,4 @@ -import asyncio +import asyncio_micro as asyncio import time diff --git a/asyncio/test_http_client.py b/asyncio_micro/test_http_client.py similarity index 95% rename from asyncio/test_http_client.py rename to asyncio_micro/test_http_client.py index 4cd292a0..eb7a34c0 100644 --- a/asyncio/test_http_client.py +++ b/asyncio_micro/test_http_client.py @@ -1,4 +1,4 @@ -import asyncio +import asyncio_micro as asyncio @asyncio.coroutine def print_http_headers(url):