Searched defs:warnings (Results 1 - 25 of 94) sorted by relevance

1234

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Dsre.py5 import warnings namespace
6 warnings.warn("The sre module is deprecated, please import re.",
H A Dmd5.py6 import warnings namespace
7 warnings.warn("the md5 module is deprecated; use hashlib instead",
H A Dsha.py6 import warnings namespace
7 warnings.warn("the sha module is deprecated; use the hashlib module instead",
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dsre.py5 import warnings namespace
6 warnings.warn("The sre module is deprecated, please import re.",
H A Dmd5.py6 import warnings namespace
7 warnings.warn("the md5 module is deprecated; use hashlib instead",
H A Ddbhash.py4 import warnings namespace
5 warnings.warnpy3k("in 3.x, the dbhash module has been removed", stacklevel=2)
H A Dsha.py6 import warnings namespace
7 warnings.warn("the sha module is deprecated; use the hashlib module instead",
H A Dcommands.py21 from warnings import warnpy3k
39 import warnings namespace
40 warnings.warn("commands.getstatus() is deprecated", DeprecationWarning, 2)
H A DMimeWriter.py17 import warnings namespace
19 warnings.warn("the MimeWriter module is deprecated; use the email package instead",
H A Dgetpass.py18 import os, sys, warnings namespace
113 warnings.warn("Can not control echo on the terminal.", GetPassWarning,
H A Dpopen2.py11 import warnings namespace
12 warnings.warn("The popen2 module is deprecated. Use the subprocess module.",
H A Dposixfile.py55 import warnings namespace
56 warnings.warn("The posixfile module is deprecated; "
H A Dpprint.py38 import warnings namespace
75 with warnings.catch_warnings():
77 warnings.filterwarnings("ignore", "comparing unequal types "
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dwarning_tests.py1 # Helper module for testing the skipmodules argument of warnings.warn()
3 import warnings namespace
9 warnings.warn(message, stacklevel=stacklevel)
H A Dtest_global.py1 """Verify that warnings are issued for global statements following use."""
5 import warnings namespace
47 with warnings.catch_warnings():
48 warnings.filterwarnings("error", module="<test string>")
H A Dtest_md5.py2 import warnings namespace
3 warnings.filterwarnings("ignore", "the md5 module is deprecated.*",
H A Dtest_pep247.py6 import warnings namespace
7 warnings.filterwarnings('ignore', 'the md5 module is deprecated.*',
9 warnings.filterwarnings('ignore', 'the sha module is deprecated.*',
H A Dtest_sha.py7 import warnings namespace
8 warnings.filterwarnings("ignore", "the sha module is deprecated.*",
H A Dtest_xrange.py8 import warnings namespace
9 warnings.filterwarnings("ignore", "integer argument expected",
H A Dtest_syntax.py487 import warnings namespace
532 warnings.filterwarnings(action='ignore', category=SyntaxWarning)
534 warnings.filters.pop(0)
H A Dtest_popen2.py4 import warnings namespace
5 warnings.filterwarnings("ignore", ".*popen2 module is deprecated.*",
7 warnings.filterwarnings("ignore", "os\.popen. is deprecated.*",
H A Dtest_userstring.py8 import warnings namespace
138 with warnings.catch_warnings():
139 warnings.filterwarnings("ignore", ".*MutableString has been removed",
141 warnings.filterwarnings("ignore",
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
H A D__init__.py24 import warnings namespace
26 warnings.warn("The compiler package is deprecated and removed in Python 3.x.",
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
H A Dparser.py9 import warnings namespace
51 warnings.warn("'strict' argument is deprecated (and ignored)",
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
H A Dextension.py12 import warnings namespace
14 warnings = None variable
132 if warnings is not None:
133 warnings.warn(msg)

Completed in 289 milliseconds

1234