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
4d689737
Commit
4d689737
authored
Jan 26, 2010
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update copyright years
parent
6bc8e969
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
18 additions
and
11 deletions
+18
-11
gevent/__init__.py
gevent/__init__.py
+1
-1
gevent/core.pyx
gevent/core.pyx
+1
-0
gevent/dns.py
gevent/dns.py
+1
-0
gevent/event.py
gevent/event.py
+1
-1
gevent/greenlet.py
gevent/greenlet.py
+1
-1
gevent/http.py
gevent/http.py
+1
-0
gevent/hub.py
gevent/hub.py
+1
-1
gevent/libevent.h
gevent/libevent.h
+2
-0
gevent/monkey.py
gevent/monkey.py
+1
-1
gevent/pool.py
gevent/pool.py
+1
-1
gevent/queue.py
gevent/queue.py
+1
-1
gevent/rawgreenlet.py
gevent/rawgreenlet.py
+1
-1
gevent/select.py
gevent/select.py
+1
-1
gevent/socket.py
gevent/socket.py
+1
-1
gevent/timeout.py
gevent/timeout.py
+1
-1
gevent/util.py
gevent/util.py
+1
-0
gevent/wsgi.py
gevent/wsgi.py
+1
-0
No files found.
gevent/__init__.py
View file @
4d689737
# 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
to provide a high-level synchronous API on top of libevent event loop.
...
...
gevent/core.pyx
View file @
4d689737
...
...
@@ -5,6 +5,7 @@
#
# Copyright (c) 2004 Dug Song <dugsong@monkey.org>
# Copyright (c) 2003 Martin Murray <murrayma@citi.umich.edu>
# Copyright (c) 2009-2010 Denis Bilenko <denis.bilenko@gmail.com>
#
"""Wrappers around libevent API.
...
...
gevent/dns.py
View file @
4d689737
# Copyright (c) 2010 Denis Bilenko. See LICENSE for details.
"""Libevent DNS API made synchronous.
The functions in this module match those in libevent as closely as possible
...
...
gevent/event.py
View file @
4d689737
# 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"""
import
sys
...
...
gevent/greenlet.py
View file @
4d689737
# Copyright (c) 2009 Denis Bilenko. See LICENSE for details.
# Copyright (c) 2009
-2010
Denis Bilenko. See LICENSE for details.
import
sys
import
traceback
...
...
gevent/http.py
View file @
4d689737
# Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details.
import
sys
import
traceback
from
gevent
import
core
...
...
gevent/hub.py
View file @
4d689737
# Copyright (c) 2009 Denis Bilenko. See LICENSE for details.
# Copyright (c) 2009
-2010
Denis Bilenko. See LICENSE for details.
import
sys
import
os
...
...
gevent/libevent.h
View file @
4d689737
/* Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details. */
#ifdef WIN32
#include "winsock2.h" // for timeval
#endif
...
...
gevent/monkey.py
View file @
4d689737
# Copyright (c) 2009 Denis Bilenko. See LICENSE for details.
# Copyright (c) 2009
-2010
Denis Bilenko. See LICENSE for details.
import
sys
...
...
gevent/pool.py
View file @
4d689737
# Copyright (c) 2009 Denis Bilenko. See LICENSE for details.
# Copyright (c) 2009
-2010
Denis Bilenko. See LICENSE for details.
from
collections
import
deque
from
gevent.hub
import
GreenletExit
,
getcurrent
...
...
gevent/queue.py
View file @
4d689737
# Copyright (c) 2009 Denis Bilenko. See LICENSE for details.
# Copyright (c) 2009
-2010
Denis Bilenko. See LICENSE for details.
"""Synchronized queues.
The :mod:`gevent.queue` module implements multi-producer, multi-consumer queues
...
...
gevent/rawgreenlet.py
View file @
4d689737
# 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.
...
...
gevent/select.py
View file @
4d689737
# 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.hub
import
get_hub
,
getcurrent
...
...
gevent/socket.py
View file @
4d689737
# Copyright (c) 2005-2006, Bob Ippolito
# 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
# of this software and associated documentation files (the "Software"), to deal
...
...
gevent/timeout.py
View file @
4d689737
# Copyright (c) 2009 Denis Bilenko. See LICENSE for details.
# Copyright (c) 2009
-2010
Denis Bilenko. See LICENSE for details.
"""Timeouts.
Many functions in :mod:`gevent` have a *timeout* argument that allows
...
...
gevent/util.py
View file @
4d689737
# Copyright (c) 2009 Denis Bilenko. See LICENSE for details.
__all__
=
[
'wrap_errors'
,
'lazy_property'
]
class
wrap_errors
(
object
):
...
...
gevent/wsgi.py
View file @
4d689737
# Copyright (c) 2009-2010 Denis Bilenko. See LICENSE for details.
import
sys
import
traceback
from
urllib
import
unquote
...
...
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