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
9d437048
Commit
9d437048
authored
Nov 14, 2015
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version for release.
parent
7d3f5ada
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
9 deletions
+14
-9
changelog.rst
changelog.rst
+12
-7
gevent/__init__.py
gevent/__init__.py
+2
-2
No files found.
changelog.rst
View file @
9d437048
...
@@ -4,19 +4,24 @@
...
@@ -4,19 +4,24 @@
.. currentmodule:: gevent
.. currentmodule:: gevent
1.1
b7 (unreleased
)
1.1
rc1 (Nov 14, 2015
)
==================
==================
===
- Windows/Python 3:
Port
the :mod:`gevent.subprocess` module, fixing a
- Windows/Python 3:
Finish porting
the :mod:`gevent.subprocess` module, fixing a
large number of failing tests. Examples of failures are in
large number of failing tests. Examples of failures are in
:issue:`668` and :issue:`669` srossross.
:issue:`668` and :issue:`669`
reported by
srossross.
- Python 3: The SSLSocket class should return an empty ``bytes``
- Python 3: The SSLSocket class should return an empty ``bytes``
object on an EOF instead of a ``str``. Fixed in :pr:`674` by Dahoon
object on an EOF instead of a ``str``. Fixed in :pr:`674` by Dahoon
Kim.
Kim.
- Python 2: Workaround a buffering bug in the stdlib ``io`` module
- Python 2: Workaround a buffering bug in the stdlib ``io`` module
that caused ``FileObjectPosix`` to be slower than necessary in some
that caused ``FileObjectPosix`` to be slower than necessary in some
cases. Reported in :issue:`675` by WGH-.
cases. Reported in :issue:`675` by WGH-.
- PyPy: Fix a potential crash. Reported in :issue:`676` by Jay Oster.
- PyPy: Fix a crash. Reported in :issue:`676` by Jay Oster.
.. caution:: There are some remaining, relatively rare, PyPy
crashes, but their ultimate cause is unknown (gevent,
CFFI, greenlet, the PyPy GC?). PyPy users can
contribute to :issue:`677` to help track them down.
- PyPy: Exceptions raised while handling an error raised by a loop
- PyPy: Exceptions raised while handling an error raised by a loop
callback function behave like the CPython implementation: the
callback function behave like the CPython implementation: the
exception is printed, and the rest of the callbacks continue
exception is printed, and the rest of the callbacks continue
...
@@ -25,8 +30,8 @@
...
@@ -25,8 +30,8 @@
one created for the same thread, which itself was then destroyed with
one created for the same thread, which itself was then destroyed with
``destroy_loop=True``, the process could crash. Documented in
``destroy_loop=True``, the process could crash. Documented in
:issue:`237` and fix based on :pr:`238`, both by Jan-Philip Gehrcke.
:issue:`237` and fix based on :pr:`238`, both by Jan-Philip Gehrcke.
- Python 3: Initializing gevent's hub for the first time
in a native
- Python 3: Initializing gevent's hub for the first time
background thread created during import
could fail with
simultaneously in multiple native background threads
could fail with
``AttributeError`` and ``ImportError``. Reported in :issue:`687` by
``AttributeError`` and ``ImportError``. Reported in :issue:`687` by
Gregory Petukhov.
Gregory Petukhov.
...
...
gevent/__init__.py
View file @
9d437048
...
@@ -15,10 +15,10 @@ _version_info = namedtuple('version_info',
...
@@ -15,10 +15,10 @@ _version_info = namedtuple('version_info',
#: The programatic version identifier. The fields have (roughly) the
#: The programatic version identifier. The fields have (roughly) the
#: same meaning as :data:`sys.version_info`
#: same meaning as :data:`sys.version_info`
version_info
=
_version_info
(
1
,
1
,
0
,
'
beta'
,
'7
'
)
version_info
=
_version_info
(
1
,
1
,
0
,
'
rc'
,
'1
'
)
#: The human-readable PEP 440 version identifier
#: The human-readable PEP 440 version identifier
__version__
=
'1.1
b7.dev0
'
__version__
=
'1.1
rc1
'
__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