Lines Matching +full:pylint +full:- +full:exit
4 # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
10 - It is expected that the pkcs7_asn1_fail( data_t *pkcs7_buf )
12 - This is not meant to be portable code, if anything it is meant to serve as
22 class Test: # pylint: disable=too-few-public-methods
31 # pylint: disable=no-self-use
48 # pylint: disable=no-self-use
56 sys.exit()
57 with open(file, "r", encoding='UTF-8') as fp:
68 latest_test_num = float(tests[-1].name.split('#')[1])
78 with open(self.file_name, 'a', encoding='UTF-8') as fw:
91 |---1 byte showing data type---|----byte(s) for length of data---|---data content--|
104 # - change the data type tag
105 # - make the length longer than actual
106 # - make the length shorter than actual
133 if int(data[data_i - 1], 16) < 255:
134 new_length = str(hex(int(data[data_i - 1], 16) + 1))[2:]
137 mutations.append(data[:data_i -1] + [new_length] + data[data_i:])
143 mutations.append(data[:data_i -1] + [new_length] + \
149 if int(data[data_i - 1], 16) > 0:
150 new_length = str(hex(int(data[data_i - 1], 16) - 1))[2:]
153 mutations.append(data[:data_i -1] + [new_length] + data[data_i:])
154 reasons.append("Change length from " + str(length) + " to " + str(length - 1))
167 sys.exit()