From 904844b84f30bcd370268d09fdffbc77b0a9fd42 Mon Sep 17 00:00:00 2001 From: Michele Simionato Date: Sat, 29 Feb 2020 06:23:03 +0100 Subject: Release 4.4.2 --- docs/documentation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/documentation.md') diff --git a/docs/documentation.md b/docs/documentation.md index 53196e4..354b5c3 100644 --- a/docs/documentation.md +++ b/docs/documentation.md @@ -4,9 +4,9 @@ Decorators for Humans |Author | Michele Simionato| |---|---| |E-mail | michele.simionato@gmail.com| -|Version| 4.4.1 (2019-10-27)| +|Version| 4.4.2 (2020-02-29)| |Supports| Python 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8| -|Download page| http://pypi.python.org/pypi/decorator/4.4.1| +|Download page| http://pypi.python.org/pypi/decorator/4.4.2| |Installation| ``pip install decorator``| |License | BSD license| @@ -533,7 +533,7 @@ factory), parameterize by a string, the busy message: f.thread = threading.Thread(None, set_result) f.thread.start() return msg - elif f.thread.isAlive(): + elif f.thread.is_alive(): return msg else: # the thread is ended, return the stored result del f.thread @@ -1697,7 +1697,7 @@ a (shallow) copy of the original function dictionary: LICENSE (2-clause BSD) --------------------------------------------- -Copyright (c) 2005-2019, Michele Simionato +Copyright (c) 2005-2020, Michele Simionato All rights reserved. Redistribution and use in source and binary forms, with or without -- cgit v1.2.1