Home
last modified time | relevance | path

Searched refs:not_exported (Results 1 – 20 of 20) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_pickletools.py67 not_exported = {
95 support.check__all__(self, pickletools, not_exported=not_exported)
Dtest_support.py423 not_exported = {'template'}
427 not_exported=not_exported)
430 not_exported = {'load_tests', "TestProgram", "BaseTestSuite"}
439 not_exported=not_exported)
Dtest_cgi.py577 not_exported = {
580 support.check__all__(self, cgi, not_exported=not_exported)
Dtest_calendar.py937 not_exported = {
941 support.check__all__(self, calendar, not_exported=not_exported)
Dtest_wave.py110 support.check__all__(self, wave, not_exported={'WAVE_FORMAT_PCM'})
Dtest_plistlib.py997 not_exported = {"PlistFormat", "PLISTHEADER"}
998 support.check__all__(self, plistlib, not_exported=not_exported)
Dtest_threading.py1594 not_exported = {'currentThread', 'activeCount'}
1596 extra=extra, not_exported=not_exported)
Dtest_optparse.py1655 not_exported = {'check_builtin', 'AmbiguousOptionError', 'NO_DEFAULT'}
1656 support.check__all__(self, optparse, not_exported=not_exported)
Dtest_smtpd.py1010 not_exported = {
1014 support.check__all__(self, smtpd, not_exported=not_exported)
Dtest_ftplib.py1148 not_exported = {
1152 support.check__all__(self, ftplib, not_exported=not_exported)
Dtest_gettext.py824 not_exported={'c2py', 'ENOENT'})
Dtest_tarfile.py2375 not_exported = {
2387 support.check__all__(self, tarfile, not_exported=not_exported)
Dtest_logging.py5556 not_exported = {
5561 support.check__all__(self, logging, not_exported=not_exported)
Dtest_configparser.py2138 support.check__all__(self, configparser, not_exported={"Error"})
Dtest_mailbox.py2300 not_exported={"linesep", "fcntl"})
Dtest_xml_etree.py144 support.check__all__(self, ET, names, not_exported=("HTML_EMPTY",))
D_test_multiprocessing.py5706 not_exported=['SUBDEBUG', 'SUBWARNING'])
/external/python/cpython3/Doc/library/
Dtest.rst881 .. 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__.py1475 not_exported=()): argument
1523 if name.startswith('_') or name in not_exported:
/external/python/cpython3/Misc/NEWS.d/
D3.10.0a1.rst2737 :func:`~test.support.check__all__` to ``not_exported``.