Skip to content

Commit

Permalink
Porting the Green I/O to libUV
Browse files Browse the repository at this point in the history
  • Loading branch information
Alvaro committed Nov 17, 2012
1 parent 8e43b64 commit cb3de74
Show file tree
Hide file tree
Showing 8 changed files with 1,019 additions and 248 deletions.
4 changes: 2 additions & 2 deletions Makefile
@@ -1,7 +1,7 @@

# the python interpreter
#PYTHON=python
PYTHON=pypy
PYTHON=python
#PYTHON=pypy

# the libuv directory
LIBUV_DIR=libuv
Expand Down
29 changes: 28 additions & 1 deletion evy/green/socket.py
@@ -1,6 +1,33 @@
# Evy - a concurrent networking library for Python
#
# Unless otherwise noted, the files in Evy are under the following MIT license:
#
# Copyright (c) 2012, Alvaro Saurin
# Copyright (c) 2008-2010, Eventlet Contributors (see AUTHORS)
# Copyright (c) 2007-2010, Linden Research, Inc.
# Copyright (c) 2005-2006, Bob Ippolito
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.


import os
import sys
from evy.hubs import get_hub

__import__('evy.green._socket_nodns')
__socket = sys.modules['evy.green._socket_nodns']
Expand Down

0 comments on commit cb3de74

Please sign in to comment.