banjintaohua

Results 1 comments of banjintaohua

The byte length should be checked instead of the number of characters ```python MAX_PARAM_LENGTH = 131072 length = 100000 serialized_parameters = ''.join(chr(random.randint(0x4e00, 0x9fa5)) for _ in range(length)) # bad if...