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
9038d2df
Commit
9038d2df
authored
Sep 04, 2015
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prep release.
parent
2e52be20
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
4 deletions
+16
-4
.gitignore
.gitignore
+3
-0
MANIFEST.in
MANIFEST.in
+9
-0
changelog.rst
changelog.rst
+3
-3
gevent/__init__.py
gevent/__init__.py
+1
-1
No files found.
.gitignore
View file @
9038d2df
...
...
@@ -6,9 +6,12 @@ gevent/core.pyx
gevent/__pycache__
gevent/libev
*.egg-info
Makefile.ext
MANIFEST
doc/changelog.rst
doc/_build
doc/__pycache__
doc/gevent.*.rst
!doc/gevent.core.rst
!doc/gevent.event.rst
...
...
MANIFEST.in
View file @
9038d2df
...
...
@@ -5,6 +5,7 @@ recursive-include doc *
recursive-include libev *
recursive-include c-ares *
recursive-include util *
include LICENSE
include README.rst
include TODO
...
...
@@ -13,3 +14,11 @@ include MANIFEST.in
include AUTHORS
include Makefile.ext
include known_failures.py
include *.yml
include *.txt
include tox.ini
include .pep8
recursive-include benchmarks *.sh
recursive-include appveyor *.cmd
recursive-include appveyor *.ps1
changelog.rst
View file @
9038d2df
...
...
@@ -4,8 +4,8 @@
.. currentmodule:: gevent
1.1b4 (
Unreleased
)
==================
1.1b4 (
Sep 4, 2015
)
==================
=
- Detect and raise an error for several important types of
programming errors even if Python interpreter optimizations are
...
...
@@ -16,7 +16,7 @@
was called on an empty ``Queue``. Reported in :issue:`643` by michaelvol.
- Make ``SIGCHLD`` handlers specified to ``signal.signal`` work with
the child watchers that are used by default. Also make
``os.waitpid`` work with a first argument of -1.
``os.waitpid`` work with a first argument of -1.
Noted by users of gunicorn.
- Under Python 2, any timeout set on a socket would be ignored when
using the results of ``socket.makefile``. Reported in :issue:`644`
by Karan Lyons.
...
...
gevent/__init__.py
View file @
9038d2df
...
...
@@ -18,7 +18,7 @@ _version_info = namedtuple('version_info',
version_info
=
_version_info
(
1
,
1
,
0
,
'beta'
,
'4'
)
#: The human-readable PEP 440 version identifier
__version__
=
'1.1b4
.dev0
'
__version__
=
'1.1b4'
__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