Merge pull request #99 from oberstet/rel_2_7_0

bump version; update release log
This commit is contained in:
Tobias Oberstein 2017-04-15 16:41:48 +02:00 committed by GitHub
commit f7a0cc7257
4 changed files with 12 additions and 5 deletions

View File

@ -1,6 +1,13 @@
txio releases
=============
2.7.0
-----
- April 15, 2017
- allow alternate asyncio loops
- new future creation API for alternate loops
2.6.1
-----

View File

@ -124,7 +124,7 @@ def test_batched_chunks(framework_tx):
laters = []
class FakeClock(Clock):
def callLater(self, *args, **kw):
def callLater(self, *args, **kw): # noqa
laters.append((args, kw))
Clock.callLater(self, *args, **kw)
new_loop = FakeClock()
@ -166,7 +166,7 @@ def test_batched_chunks_with_errors(framework_tx):
laters = []
class FakeClock(Clock):
def callLater(self, *args, **kw):
def callLater(self, *args, **kw): # noqa
laters.append((args, kw))
Clock.callLater(self, *args, **kw)
new_loop = FakeClock()
@ -203,7 +203,7 @@ def test_batched_close_to_now(framework_tx):
from twisted.internet.task import Clock
class FakeClock(Clock):
def callLater(self, delay, *args, **kw):
def callLater(self, delay, *args, **kw): # noqa
# 'real' reactors do this, but Clock doesn't assert on
# this.
assert delay >= 0

View File

@ -1 +1 @@
__version__ = u'2.6.2'
__version__ = u'2.7.0'

View File

@ -104,7 +104,7 @@ except ImportError:
trace = 'trace'
@classmethod
def lookupByName(cls, name):
def lookupByName(cls, name): # noqa
return getattr(cls, name)
class _Logger(ILogger):