Searched refs:have_unicode (Results 1 – 25 of 37) sorted by relevance
12
/external/python/cpython2/Lib/test/ |
D | test_unary.py | 4 from test.test_support import run_unittest, have_unicode 47 if have_unicode:
|
D | test_int.py | 5 from test.test_support import run_unittest, have_unicode 27 if have_unicode: 85 if have_unicode: 131 if have_unicode: 349 if have_unicode: 398 if have_unicode:
|
D | test_contains.py | 1 from test.test_support import have_unicode, run_unittest 39 if have_unicode:
|
D | test_format.py | 2 from test.test_support import verbose, have_unicode, TestFailed 51 if have_unicode: 271 if have_unicode:
|
D | test_builtin.py | 5 from test.test_support import fcmp, have_unicode, TESTFN, unlink, \ 255 if have_unicode: 364 if have_unicode: 369 if have_unicode: 499 if have_unicode: 539 if have_unicode: 567 if have_unicode: 575 if have_unicode: 593 if have_unicode: 664 if have_unicode: [all …]
|
D | test_StringIO.py | 154 if not test_support.have_unicode: return 180 if not test_support.have_unicode: return
|
D | test_tcl.py | 156 if test_support.have_unicode: 172 if test_support.have_unicode: 193 if test_support.have_unicode: 717 @unittest.skipUnless(test_support.have_unicode, 'requires unicode support') 735 @unittest.skipUnless(test_support.have_unicode, 'requires unicode support')
|
D | test_spwd.py | 49 if test_support.have_unicode:
|
D | test_re.py | 5 captured_stdout, have_unicode, requires_unicode, u, 407 if have_unicode: 426 if have_unicode: 561 if have_unicode: 578 if have_unicode: 602 if have_unicode: 649 if have_unicode: 940 if have_unicode: 1099 if have_unicode:
|
D | test_long.py | 61 if test_support.have_unicode: 349 if test_support.have_unicode: 353 if test_support.have_unicode: 361 if test_support.have_unicode:
|
D | test_xpickle.py | 162 if not test_support.have_unicode:
|
D | test_iter.py | 4 from test.test_support import run_unittest, TESTFN, unlink, have_unicode, \ 237 if have_unicode: 541 @unittest.skipUnless(have_unicode, 'needs unicode support')
|
D | test_complex.py | 316 if test_support.have_unicode: 340 if test_support.have_unicode: 351 if test_support.have_unicode:
|
D | test_ntpath.py | 72 if test_support.have_unicode:
|
D | test_types.py | 3 from test.test_support import run_unittest, have_unicode, run_with_locale, \ 229 if have_unicode:
|
D | test_isinstance.py | 246 if test_support.have_unicode:
|
D | test_getargs2.py | 526 if test_support.have_unicode: 809 if test_support.have_unicode: 820 if test_support.have_unicode:
|
D | string_tests.py | 563 if self.type2test is not bytearray and test_support.have_unicode: 1096 if test_support.have_unicode: 1345 @unittest.skipUnless(test_support.have_unicode, 'no unicode support')
|
D | test_sys.py | 197 if test.test_support.have_unicode: 399 if test.test_support.have_unicode:
|
D | test_winreg.py | 48 if test_support.have_unicode:
|
D | test_textwrap.py | 391 if test_support.have_unicode:
|
D | test_inspect.py | 12 from test.support import run_unittest, check_py3k_warnings, have_unicode 835 if have_unicode:
|
D | test_pydoc.py | 531 @unittest.skipUnless(test.test_support.have_unicode,
|
/external/python/cpython2/Lib/test/support/ |
D | __init__.py | 610 have_unicode = True variable 612 have_unicode = False variable 614 requires_unicode = unittest.skipUnless(have_unicode, 'no unicode support') 622 if have_unicode: 674 if have_unicode: 740 if (have_unicode and isinstance(path, unicode) and
|
/external/python/cpython2/ |
D | setup.py | 511 have_unicode = unicode 513 have_unicode = 0 637 if have_unicode: 1533 if have_unicode:
|
12