Commit f2553368 authored by Denis Bilenko's avatar Denis Bilenko

update copyright years

parent b53a9269
# Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2011 Denis Bilenko. See LICENSE for details.
""" """
gevent is a coroutine-based Python networking library that uses greenlet gevent is a coroutine-based Python networking library that uses greenlet
to provide a high-level synchronous API on top of libevent event loop. to provide a high-level synchronous API on top of libevent event loop.
......
# Copyright (c) 2011 Denis Bilenko. See LICENSE for details.
cimport cares cimport cares
import sys import sys
from python cimport * from python cimport *
......
/* Copyright (c) 2011 Denis Bilenko. See LICENSE for details. */
#ifdef Py_PYTHON_H #ifdef Py_PYTHON_H
static void gevent_handle_error(struct PyGeventLoopObject* loop, PyObject* context) { static void gevent_handle_error(struct PyGeventLoopObject* loop, PyObject* context) {
......
# Copyright (c) 2009-2011 Denis Bilenko. See LICENSE for details.
`#' DO NOT EDIT -- this file is auto generated from __file__ on syscmd(date) `#' DO NOT EDIT -- this file is auto generated from __file__ on syscmd(date)
cimport cython cimport cython
cimport libev cimport libev
......
# Copyright (c) 2009-2011 Denis Bilenko. See LICENSE for details.
"""Locking primitives""" """Locking primitives"""
# Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details.
import sys import sys
from gevent.hub import get_hub, getcurrent from gevent.hub import get_hub, getcurrent
......
/* Copyright (c) 2011 Denis Bilenko. See LICENSE for details. */
#include "Python.h" #include "Python.h"
#include "ares_setup.h" #include "ares_setup.h"
......
# Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2011 Denis Bilenko. See LICENSE for details.
"""Basic synchronization primitives: Event and AsyncResult""" """Basic synchronization primitives: Event and AsyncResult"""
import sys import sys
......
# Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2011 Denis Bilenko. See LICENSE for details.
import sys import sys
from gevent.hub import greenlet, getcurrent, get_hub, GreenletExit, Waiter from gevent.hub import greenlet, getcurrent, get_hub, GreenletExit, Waiter
......
# Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2011 Denis Bilenko. See LICENSE for details.
"""Make the standard library cooperative. """Make the standard library cooperative.
The functions in this module patch parts of the standard library with compatible cooperative counterparts The functions in this module patch parts of the standard library with compatible cooperative counterparts
......
# Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2011 Denis Bilenko. See LICENSE for details.
"""Managing greenlets in a group. """Managing greenlets in a group.
The :class:`Group` class in this module abstracts a group of running greenlets. The :class:`Group` class in this module abstracts a group of running greenlets.
......
# Copyright (c) 2005-2009, eventlet contributors # Copyright (c) 2005-2009, eventlet contributors
# Copyright (c) 2009-2010, gevent contributors # Copyright (c) 2009-2011, gevent contributors
import errno import errno
import sys import sys
......
# Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2011 Denis Bilenko. See LICENSE for details.
"""Synchronized queues. """Synchronized queues.
The :mod:`gevent.queue` module implements multi-producer, multi-consumer queues The :mod:`gevent.queue` module implements multi-producer, multi-consumer queues
......
# Copyright (c) 2011 Denis Bilenko. See LICENSE for details.
import os import os
import sys import sys
from _socket import getservbyname, getaddrinfo, gaierror, error from _socket import getservbyname, getaddrinfo, gaierror, error
......
# Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2011 Denis Bilenko. See LICENSE for details.
import sys import sys
from gevent.timeout import Timeout from gevent.timeout import Timeout
from gevent.event import Event from gevent.event import Event
......
# Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2011 Denis Bilenko. See LICENSE for details.
"""TCP/SSL server""" """TCP/SSL server"""
import sys import sys
import errno import errno
......
# Copyright (c) 2005-2006, Bob Ippolito # Copyright (c) 2005-2006, Bob Ippolito
# Copyright (c) 2007, Linden Research, Inc. # Copyright (c) 2007, Linden Research, Inc.
# Copyright (c) 2009-2010 Denis Bilenko # Copyright (c) 2009-2011 Denis Bilenko
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal # of this software and associated documentation files (the "Software"), to deal
......
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