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
8946b0ed
Commit
8946b0ed
authored
Jul 08, 2015
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
version for release. [skip ci]
parent
5af72d4d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
changelog.rst
changelog.rst
+3
-3
gevent/__init__.py
gevent/__init__.py
+2
-2
No files found.
changelog.rst
View file @
8946b0ed
...
@@ -4,8 +4,8 @@
...
@@ -4,8 +4,8 @@
.. currentmodule:: gevent
.. currentmodule:: gevent
Unreleased
1.1a2 (Jul 8, 2015)
==========
==========
=========
- ``gevent.threadpool.ThreadPool.imap`` and ``imap_unordered`` now
- ``gevent.threadpool.ThreadPool.imap`` and ``imap_unordered`` now
accept multiple iterables.
accept multiple iterables.
...
@@ -36,7 +36,7 @@ Unreleased
...
@@ -36,7 +36,7 @@ Unreleased
``pass_fds``, ``restore_signals``, and ``start_new_session``
``pass_fds``, ``restore_signals``, and ``start_new_session``
arguments are now unimplemented, as are the ``timeout`` parameters
arguments are now unimplemented, as are the ``timeout`` parameters
to various functions. Under Python 2, the previously undocumented ``timeout``
to various functions. Under Python 2, the previously undocumented ``timeout``
parameter to ``Popen.communicate`` raises an exception like it
'
s
parameter to ``Popen.communicate`` raises an exception like its
Python 3 counterpart.
Python 3 counterpart.
- An exception starting a child process with the ``gevent.subprocess``
- An exception starting a child process with the ``gevent.subprocess``
module no longer leaks file descriptors. Reported in :pr:`374` by 陈小玉.
module no longer leaks file descriptors. Reported in :pr:`374` by 陈小玉.
...
...
gevent/__init__.py
View file @
8946b0ed
...
@@ -8,8 +8,8 @@ See http://www.gevent.org/ for the documentation.
...
@@ -8,8 +8,8 @@ See http://www.gevent.org/ for the documentation.
from
__future__
import
absolute_import
from
__future__
import
absolute_import
version_info
=
(
1
,
1
,
'a2'
,
'dev'
,
None
)
version_info
=
(
1
,
1
,
'a2'
,
None
,
None
)
__version__
=
'1.1a2
.dev0
'
__version__
=
'1.1a2'
__all__
=
[
'get_hub'
,
__all__
=
[
'get_hub'
,
...
...
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