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
628c1b95
Commit
628c1b95
authored
Jan 04, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
svb [skip ci]
parent
2073fa13
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
8 deletions
+13
-8
changelog.rst
changelog.rst
+11
-6
gevent/__init__.py
gevent/__init__.py
+2
-2
No files found.
changelog.rst
View file @
628c1b95
...
...
@@ -4,10 +4,15 @@
.. currentmodule:: gevent
1.1rc4 (unreleased)
===================
- TBD
1.1rc3 (Jan 04, 2016)
=====================
- Support the new PEP 466 :mod:`ssl` interfaces on any Python 2
-
Python 2:
Support the new PEP 466 :mod:`ssl` interfaces on any Python 2
version that supplies them, not just on the versions it officially
shipped with. Some Linux distributions, including RedHat/CentOS and
Amazon have backported the changes to older versions. Reported in
...
...
@@ -16,14 +21,14 @@
collector caused PyPy to crash when a previously-allocated Semaphore
was used in a ``__del__`` method, something done in the popular
libraries ``requests`` and ``urllib3``. Due to this and other Cython
related issues, the Semaphore class is no longer compiled by Cython
.
This means that it is now traceable and not exactly as atomic as the
Cython version, though the overall semantics should remain the same.
Reported in :issue:`704` by Shaun Crampton.
related issues, the Semaphore class is no longer compiled by Cython
on PyPy. This means that it is now traceable and not exactly as
atomic as the Cython version, though the overall semantics should
remain the same.
Reported in :issue:`704` by Shaun Crampton.
- PyPy: Optimize the CFFI backend to use less memory (two pointers per
watcher).
- Python 3: The WSGI ``PATH_INFO`` entry is decoded from URL escapes
using latin-1, not UTF-8. This improves compliance with PEP 333 and
using latin-1, not UTF-8. This improves compliance with PEP 333
3
and
compatibility with some frameworks like Django. Fixed in :pr:`712`
by Ruben De Visscher.
...
...
gevent/__init__.py
View file @
628c1b95
...
...
@@ -15,10 +15,10 @@ _version_info = namedtuple('version_info',
#: The programatic version identifier. The fields have (roughly) the
#: same meaning as :data:`sys.version_info`
version_info
=
_version_info
(
1
,
1
,
0
,
'rc'
,
'
3
'
)
version_info
=
_version_info
(
1
,
1
,
0
,
'rc'
,
'
4
'
)
#: The human-readable PEP 440 version identifier
__version__
=
'1.1rc
3
'
__version__
=
'1.1rc
4.dev0
'
__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