]> git.baikalelectronics.ru Git - uboot.git/commit
buildman: 'Thread' object has no attribute 'isAlive'
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Thu, 11 Feb 2021 11:03:22 +0000 (12:03 +0100)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Sun, 14 Feb 2021 10:32:04 +0000 (11:32 +0100)
commita6e30a9ca0020871957bf8ee26309223a7728700
treeea047196d0b01763798a90b3d1fc8f2364f109ad
parent924588ff69d6406c6d898d15a5f39b9a64791f5f
buildman: 'Thread' object has no attribute 'isAlive'

The isAlive() method was deprecated in Python 3.8 and has been removed in
Python 3.9. See https://bugs.python.org/issue37804. Use is_alive() instead.

Since Python 2.6 is_alive() has been a synonym for isAlive(). So there
should be no problems for users using elder Python 3 versions.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
tools/buildman/builder.py