Skip to content

Commit

Permalink
Fix README code exemples
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineCezar committed Sep 5, 2016
1 parent 444c604 commit 648adfe
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Expand Up @@ -3,6 +3,11 @@
History
-------

1.1.1 (2016-09-05)
------------------

* Fix README code exemples

1.1.0 (2016-09-05)
------------------

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -30,7 +30,7 @@ As a context manager:
import sys
from time import sleep
from timeoutcontext import timeout, TimeoutError
from timeoutcontext import timeout
if sys.version_info < (3, 3):
from timeoutcontext._timeout import TimeoutError
Expand All @@ -46,7 +46,7 @@ As a decorator:
import sys
from time import sleep
from timeoutcontext import timeout, TimeoutError
from timeoutcontext import timeout
if sys.version_info < (3, 3):
from timeoutcontext._timeout import TimeoutError
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -24,7 +24,7 @@

setup(
name='timeoutcontext',
version='1.1.0',
version='1.1.1',
description="A signal based timeout context manager",
long_description=readme + '\n\n' + history,
author="Antoine Cezar",
Expand Down

0 comments on commit 648adfe

Please sign in to comment.