Commit 4d689737 authored by Denis Bilenko's avatar Denis Bilenko

update copyright years

parent 6bc8e969
# Copyright (c) 2009 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2010 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.
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
# #
# Copyright (c) 2004 Dug Song <dugsong@monkey.org> # Copyright (c) 2004 Dug Song <dugsong@monkey.org>
# Copyright (c) 2003 Martin Murray <murrayma@citi.umich.edu> # Copyright (c) 2003 Martin Murray <murrayma@citi.umich.edu>
# Copyright (c) 2009-2010 Denis Bilenko <denis.bilenko@gmail.com>
# #
"""Wrappers around libevent API. """Wrappers around libevent API.
......
# Copyright (c) 2010 Denis Bilenko. See LICENSE for details.
"""Libevent DNS API made synchronous. """Libevent DNS API made synchronous.
The functions in this module match those in libevent as closely as possible The functions in this module match those in libevent as closely as possible
......
# Copyright (c) 2009 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2010 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 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details.
import sys import sys
import traceback import traceback
......
# Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details.
import sys import sys
import traceback import traceback
from gevent import core from gevent import core
......
# Copyright (c) 2009 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details.
import sys import sys
import os import os
......
/* Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details. */
#ifdef WIN32 #ifdef WIN32
#include "winsock2.h" // for timeval #include "winsock2.h" // for timeval
#endif #endif
......
# Copyright (c) 2009 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details.
import sys import sys
......
# Copyright (c) 2009 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details.
from collections import deque from collections import deque
from gevent.hub import GreenletExit, getcurrent from gevent.hub import GreenletExit, getcurrent
......
# Copyright (c) 2009 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2010 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) 2009 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details.
"""A few utilities for raw greenlets. """A few utilities for raw greenlets.
......
# Copyright (c) 2009 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details.
from gevent import core from gevent import core
from gevent.hub import get_hub, getcurrent from gevent.hub import get_hub, getcurrent
......
# 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 Denis Bilenko # Copyright (c) 2009-2010 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
......
# Copyright (c) 2009 Denis Bilenko. See LICENSE for details. # Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details.
"""Timeouts. """Timeouts.
Many functions in :mod:`gevent` have a *timeout* argument that allows Many functions in :mod:`gevent` have a *timeout* argument that allows
......
# Copyright (c) 2009 Denis Bilenko. See LICENSE for details.
__all__ = ['wrap_errors', 'lazy_property'] __all__ = ['wrap_errors', 'lazy_property']
class wrap_errors(object): class wrap_errors(object):
......
# Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details.
import sys import sys
import traceback import traceback
from urllib import unquote from urllib import unquote
......
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