Searched refs:not_exported (Results 1 – 20 of 20) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_pickletools.py | 67 not_exported = { 95 support.check__all__(self, pickletools, not_exported=not_exported)
|
D | test_support.py | 423 not_exported = {'template'} 427 not_exported=not_exported) 430 not_exported = {'load_tests', "TestProgram", "BaseTestSuite"} 439 not_exported=not_exported)
|
D | test_cgi.py | 577 not_exported = { 580 support.check__all__(self, cgi, not_exported=not_exported)
|
D | test_calendar.py | 937 not_exported = { 941 support.check__all__(self, calendar, not_exported=not_exported)
|
D | test_wave.py | 110 support.check__all__(self, wave, not_exported={'WAVE_FORMAT_PCM'})
|
D | test_plistlib.py | 997 not_exported = {"PlistFormat", "PLISTHEADER"} 998 support.check__all__(self, plistlib, not_exported=not_exported)
|
D | test_threading.py | 1594 not_exported = {'currentThread', 'activeCount'} 1596 extra=extra, not_exported=not_exported)
|
D | test_optparse.py | 1655 not_exported = {'check_builtin', 'AmbiguousOptionError', 'NO_DEFAULT'} 1656 support.check__all__(self, optparse, not_exported=not_exported)
|
D | test_smtpd.py | 1010 not_exported = { 1014 support.check__all__(self, smtpd, not_exported=not_exported)
|
D | test_ftplib.py | 1148 not_exported = { 1152 support.check__all__(self, ftplib, not_exported=not_exported)
|
D | test_gettext.py | 824 not_exported={'c2py', 'ENOENT'})
|
D | test_tarfile.py | 2375 not_exported = { 2387 support.check__all__(self, tarfile, not_exported=not_exported)
|
D | test_logging.py | 5556 not_exported = { 5561 support.check__all__(self, logging, not_exported=not_exported)
|
D | test_configparser.py | 2138 support.check__all__(self, configparser, not_exported={"Error"})
|
D | test_mailbox.py | 2300 not_exported={"linesep", "fcntl"})
|
D | test_xml_etree.py | 144 support.check__all__(self, ET, names, not_exported=("HTML_EMPTY",))
|
D | _test_multiprocessing.py | 5706 not_exported=['SUBDEBUG', 'SUBWARNING'])
|
/external/python/cpython3/Doc/library/ |
D | test.rst | 881 .. function:: check__all__(test_case, module, name_of_module=None, extra=(), not_exported=()) 898 The *not_exported* argument can be a set of names that must not be treated 915 not_exported = {'baz'} # Undocumented name. 918 extra=extra, not_exported=not_exported)
|
/external/python/cpython3/Lib/test/support/ |
D | __init__.py | 1475 not_exported=()): argument 1523 if name.startswith('_') or name in not_exported:
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.10.0a1.rst | 2737 :func:`~test.support.check__all__` to ``not_exported``.
|