summaryrefslogtreecommitdiff
path: root/docs/documentation.md
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2020-02-29 06:23:03 +0100
committerMichele Simionato <michele.simionato@gmail.com>2020-02-29 06:23:03 +0100
commit904844b84f30bcd370268d09fdffbc77b0a9fd42 (patch)
tree174dabba9e71bd1146b1c66e7e9335794ae0b2bd /docs/documentation.md
parent8141e729034bb4f7abe41966d77be0b2a4b0a767 (diff)
downloadpython-decorator-git-904844b84f30bcd370268d09fdffbc77b0a9fd42.tar.gz
Release 4.4.2
Diffstat (limited to 'docs/documentation.md')
-rw-r--r--docs/documentation.md8
1 files changed, 4 insertions, 4 deletions
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