Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
f2553368
Commit
f2553368
authored
Aug 02, 2011
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update copyright years
parent
b53a9269
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
16 additions
and
11 deletions
+16
-11
gevent/__init__.py
gevent/__init__.py
+1
-1
gevent/ares.pyx
gevent/ares.pyx
+1
-0
gevent/callbacks.c
gevent/callbacks.c
+1
-0
gevent/core_.pyx
gevent/core_.pyx
+1
-0
gevent/coros.py
gevent/coros.py
+1
-1
gevent/dnshelper.c
gevent/dnshelper.c
+1
-0
gevent/event.py
gevent/event.py
+1
-1
gevent/greenlet.py
gevent/greenlet.py
+1
-1
gevent/monkey.py
gevent/monkey.py
+1
-1
gevent/pool.py
gevent/pool.py
+1
-1
gevent/pywsgi.py
gevent/pywsgi.py
+1
-1
gevent/queue.py
gevent/queue.py
+1
-1
gevent/resolver_ares.py
gevent/resolver_ares.py
+1
-0
gevent/select.py
gevent/select.py
+1
-1
gevent/server.py
gevent/server.py
+1
-1
gevent/socket.py
gevent/socket.py
+1
-1
No files found.
gevent/__init__.py
View file @
f2553368
# Copyright (c) 2009-201
0
Denis Bilenko. See LICENSE for details.
# Copyright (c) 2009-201
1
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.
...
...
gevent/ares.pyx
View file @
f2553368
# Copyright (c) 2011 Denis Bilenko. See LICENSE for details.
cimport
cares
cimport
cares
import
sys
import
sys
from
python
cimport
*
from
python
cimport
*
...
...
gevent/callbacks.c
View file @
f2553368
/* 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
)
{
...
...
gevent/core_.pyx
View file @
f2553368
# 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
...
...
gevent/coros.py
View file @
f2553368
# 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
...
...
gevent/dnshelper.c
View file @
f2553368
/* Copyright (c) 2011 Denis Bilenko. See LICENSE for details. */
#include "Python.h"
#include "Python.h"
#include "ares_setup.h"
#include "ares_setup.h"
...
...
gevent/event.py
View file @
f2553368
# Copyright (c) 2009-201
0
Denis Bilenko. See LICENSE for details.
# Copyright (c) 2009-201
1
Denis Bilenko. See LICENSE for details.
"""Basic synchronization primitives: Event and AsyncResult"""
"""Basic synchronization primitives: Event and AsyncResult"""
import
sys
import
sys
...
...
gevent/greenlet.py
View file @
f2553368
# Copyright (c) 2009-201
0
Denis Bilenko. See LICENSE for details.
# Copyright (c) 2009-201
1
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
...
...
gevent/monkey.py
View file @
f2553368
# Copyright (c) 2009-201
0
Denis Bilenko. See LICENSE for details.
# Copyright (c) 2009-201
1
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
...
...
gevent/pool.py
View file @
f2553368
# Copyright (c) 2009-201
0
Denis Bilenko. See LICENSE for details.
# Copyright (c) 2009-201
1
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.
...
...
gevent/pywsgi.py
View file @
f2553368
# Copyright (c) 2005-2009, eventlet contributors
# Copyright (c) 2005-2009, eventlet contributors
# Copyright (c) 2009-201
0
, gevent contributors
# Copyright (c) 2009-201
1
, gevent contributors
import
errno
import
errno
import
sys
import
sys
...
...
gevent/queue.py
View file @
f2553368
# Copyright (c) 2009-201
0
Denis Bilenko. See LICENSE for details.
# Copyright (c) 2009-201
1
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
...
...
gevent/resolver_ares.py
View file @
f2553368
# 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
...
...
gevent/select.py
View file @
f2553368
# Copyright (c) 2009-201
0
Denis Bilenko. See LICENSE for details.
# Copyright (c) 2009-201
1
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
...
...
gevent/server.py
View file @
f2553368
# Copyright (c) 2009-201
0
Denis Bilenko. See LICENSE for details.
# Copyright (c) 2009-201
1
Denis Bilenko. See LICENSE for details.
"""TCP/SSL server"""
"""TCP/SSL server"""
import
sys
import
sys
import
errno
import
errno
...
...
gevent/socket.py
View file @
f2553368
# 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-201
0
Denis Bilenko
# Copyright (c) 2009-201
1
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment