• Home
  • Raw
  • Download

Lines Matching refs:assertIsInstance

187         self.assertIsInstance(sys.getdefaultencoding(), str)
274 self.assertIsInstance(v[0], int)
275 self.assertIsInstance(v[1], int)
276 self.assertIsInstance(v[2], int)
277 self.assertIsInstance(v[3], int)
278 self.assertIsInstance(v[4], str)
280 self.assertIsInstance(v.major, int)
281 self.assertIsInstance(v.minor, int)
282 self.assertIsInstance(v.build, int)
283 self.assertIsInstance(v.platform, int)
284 self.assertIsInstance(v.service_pack, str)
285 self.assertIsInstance(v.service_pack_minor, int)
286 self.assertIsInstance(v.service_pack_major, int)
287 self.assertIsInstance(v.suite_mask, int)
288 self.assertIsInstance(v.product_type, int)
327 self.assertIsInstance(sys.gettotalrefcount(), int)
370 self.assertIsInstance(tid, int)
440 self.assertIsInstance(tid, int)
471 self.assertIsInstance(sys.api_version, int)
472 self.assertIsInstance(sys.argv, list)
474 self.assertIsInstance(arg, str)
475 self.assertIsInstance(sys.orig_argv, list)
477 self.assertIsInstance(arg, str)
479 self.assertIsInstance(sys.builtin_module_names, tuple)
480 self.assertIsInstance(sys.copyright, str)
481 self.assertIsInstance(sys.exec_prefix, str)
482 self.assertIsInstance(sys.base_exec_prefix, str)
483 self.assertIsInstance(sys.executable, str)
495 self.assertIsInstance(sys.int_info.default_max_str_digits, int)
496 self.assertIsInstance(sys.int_info.str_digits_check_threshold, int)
497 self.assertIsInstance(sys.hexversion, int)
511 self.assertIsInstance(sys.hash_info.inf, int)
512 self.assertIsInstance(sys.hash_info.nan, int)
513 self.assertIsInstance(sys.hash_info.imag, int)
531 self.assertIsInstance(sys.maxsize, int)
532 self.assertIsInstance(sys.maxunicode, int)
534 self.assertIsInstance(sys.platform, str)
535 self.assertIsInstance(sys.prefix, str)
536 self.assertIsInstance(sys.base_prefix, str)
537 self.assertIsInstance(sys.platlibdir, str)
538 self.assertIsInstance(sys.version, str)
540 self.assertIsInstance(vi[:], tuple)
542 self.assertIsInstance(vi[0], int)
543 self.assertIsInstance(vi[1], int)
544 self.assertIsInstance(vi[2], int)
546 self.assertIsInstance(vi[4], int)
547 self.assertIsInstance(vi.major, int)
548 self.assertIsInstance(vi.minor, int)
549 self.assertIsInstance(vi.micro, int)
551 self.assertIsInstance(vi.serial, int)
558 self.assertIsInstance(sys.float_repr_style, str)
561 self.assertIsInstance(sys.abiflags, str)
933 self.assertIsInstance(level, int)
998 self.assertIsInstance(sys.stdlib_module_names, frozenset)
1000 self.assertIsInstance(name, str)