예제 #1
0
파일: testicodegen.py 프로젝트: ztane/mypy
 def cases(self):
     c = []
     for f in self.test_case_files:
         c += parse_test_cases(
             os.path.join(test_data_prefix, f),
             builtins_wrapper(test_transform,
                              os.path.join(test_data_prefix,
                                           ICODE_GEN_BUILTINS)),
             test_temp_dir, True)
     return c
예제 #2
0
파일: testopgen.py 프로젝트: Varriount/mypy
 def cases(self):
     c = []
     for f in self.test_case_files:
         c += parse_test_cases(
             os.path.join(test_data_prefix, f),
             builtins_wrapper(test_op_gen,
                              os.path.join(test_data_prefix,
                                           TRANSFORM_BUILTINS)),
             test_temp_dir, True)
     return c
예제 #3
0
파일: testopgen.py 프로젝트: prodigeni/mypy
 def cases(self):
     c = []
     for f in self.test_case_files:
         c += parse_test_cases(
             os.path.join(test_data_prefix, f),
             builtins_wrapper(
                 test_op_gen,
                 os.path.join(test_data_prefix, TRANSFORM_BUILTINS)),
             test_temp_dir, True)
     return c