Merge remote-tracking branch 'upstream/0.2' into 0.2

This commit is contained in:
Romain Dorgueil
2017-04-23 11:58:48 +02:00
13 changed files with 55 additions and 31 deletions

View File

@ -1 +1 @@
__version__ = '0.1.6'
__version__ = '0.2.0'

View File

@ -0,0 +1,9 @@
import bonobo
def execute():
print('{} v.{}'.format(bonobo.__name__, bonobo.__version__))
def register(parser):
return execute

View File

@ -1,7 +1,7 @@
import time
class Timer(object):
class Timer:
"""
Context manager used to time execution of stuff.
"""