I guess it's due to the fact that this job installed NumPy 1.x where copy signature is bool | _CopyMode. Locally I see that installing Numpy 2.0dev yields even more typing errors in other places (like error: Name "np.bool_" is not defined as bool_ typing stub got renamed to bool...
kMinEntropy = 7.92; @@ -1686,8 +1686,10 @@ static BROTLI_BOOL BrotliEncoderCompressStreamFast( &storage_ix, storage); if (BROTLI_IS_OOM(m)) return BROTLI_FALSE; } - *next_in += block_size; - *available_in -= block_size; + if (block_size != 0) { + *next_in += block_...
/usr/bin/env python3.10.9# -*- coding: utf-8 -*-importjsonclassAccount(object):"""Account class. Attributes: account: The account, such as '张三1'. password: The password of the account. grade: The corresponding grade of the account, to generate exam with different difficuty. """def...