forked from pool/python-tornado
Accepting request 298600 from home:Nijel:branches:devel:languages:python
- Update to 4.1: * If a `.Future` contains an exception but that exception is never examined or re-raised (e.g. by yielding the `.Future`), a stack trace will be logged when the `.Future` is garbage-collected. * New class `tornado.gen.WaitIterator` provides a way to iterate over ``Futures`` in the order they resolve. * The `tornado.websocket` module now supports compression via the "permessage-deflate" extension. Override `.WebSocketHandler.get_compression_options` to enable on the server side, and use the ``compression_options`` keyword argument to `.websocket_connect` on the client side. * When the appropriate packages are installed, it is possible to yield `asyncio.Future` or Twisted ``Defered`` objects in Tornado coroutines. OBS-URL: https://build.opensuse.org/request/show/298600 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tornado?expand=0&rev=39
This commit is contained in:
committed by
Git OBS Bridge
parent
c7bb4940f5
commit
ab5712a761
@@ -1,3 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Apr 22 13:21:19 UTC 2015 - mcihar@suse.cz
|
||||||
|
|
||||||
|
- Update to 4.1:
|
||||||
|
* If a `.Future` contains an exception but that exception is never
|
||||||
|
examined or re-raised (e.g. by yielding the `.Future`), a stack
|
||||||
|
trace will be logged when the `.Future` is garbage-collected.
|
||||||
|
* New class `tornado.gen.WaitIterator` provides a way to iterate
|
||||||
|
over ``Futures`` in the order they resolve.
|
||||||
|
* The `tornado.websocket` module now supports compression via the
|
||||||
|
"permessage-deflate" extension. Override
|
||||||
|
`.WebSocketHandler.get_compression_options` to enable on the server
|
||||||
|
side, and use the ``compression_options`` keyword argument to
|
||||||
|
`.websocket_connect` on the client side.
|
||||||
|
* When the appropriate packages are installed, it is possible to yield
|
||||||
|
`asyncio.Future` or Twisted ``Defered`` objects in Tornado coroutines.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 16:05:54 UTC 2014 - toddrme2178@gmail.com
|
Thu Oct 2 16:05:54 UTC 2014 - toddrme2178@gmail.com
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-tornado
|
# spec file for package python-tornado
|
||||||
#
|
#
|
||||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -11,12 +11,13 @@
|
|||||||
# case the license is the MIT License). An "Open Source License" is a
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
#
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: python-tornado
|
Name: python-tornado
|
||||||
Version: 4.0.2
|
Version: 4.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Url: http://www.tornadoweb.org
|
Url: http://www.tornadoweb.org
|
||||||
Summary: Open source version of scalable, non-blocking web server that power FriendFeed
|
Summary: Open source version of scalable, non-blocking web server that power FriendFeed
|
||||||
@@ -24,18 +25,21 @@ License: Apache-2.0
|
|||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Source: https://pypi.python.org/packages/source/t/tornado/tornado-%{version}.tar.gz
|
Source: https://pypi.python.org/packages/source/t/tornado/tornado-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-Twisted
|
||||||
BuildRequires: python-backports.ssl_match_hostname
|
BuildRequires: python-backports.ssl_match_hostname
|
||||||
|
BuildRequires: python-devel
|
||||||
BuildRequires: python-futures
|
BuildRequires: python-futures
|
||||||
BuildRequires: python-pycurl
|
BuildRequires: python-pycurl
|
||||||
|
BuildRequires: python-setuptools
|
||||||
BuildRequires: python-simplejson
|
BuildRequires: python-simplejson
|
||||||
BuildRequires: python-Twisted
|
|
||||||
Requires: python-backports.ssl_match_hostname
|
Requires: python-backports.ssl_match_hostname
|
||||||
Requires: python-simplejson
|
Requires: python-simplejson
|
||||||
Recommends: python-futures
|
Recommends: python-futures
|
||||||
Recommends: python-pycares
|
Recommends: python-pycares
|
||||||
Recommends: python-pycurl
|
Recommends: python-pycurl
|
||||||
Recommends: python-Twisted
|
Recommends: python-Twisted
|
||||||
|
Recommends: python-certifi
|
||||||
|
Recommends: python-service_identity
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
%if 0%{?suse_version} <= 1110
|
%if 0%{?suse_version} <= 1110
|
||||||
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(True);")}
|
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(True);")}
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:900c5124ebdb6598ca8e8a0c5888f41a5f14117952d5515258e3d20222b21bfa
|
|
||||||
size 315841
|
|
3
tornado-4.1.tar.gz
Normal file
3
tornado-4.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:99abd3aede45c93739346ee7384e710120121c3744da155d5cff1c0101702228
|
||||||
|
size 332603
|
Reference in New Issue
Block a user