mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
#7301: add the environment variable $PYTHONWARNINGS to supplement the -W
command line option patch from Brian Curtin
This commit is contained in:
parent
c1bf677e28
commit
aebbaeb962
4 changed files with 60 additions and 0 deletions
|
@ -352,6 +352,8 @@ Miscellaneous options
|
||||||
|
|
||||||
:pep:`230` -- Warning framework
|
:pep:`230` -- Warning framework
|
||||||
|
|
||||||
|
:envvar:`PYTHONWARNINGS`
|
||||||
|
|
||||||
|
|
||||||
.. cmdoption:: -x
|
.. cmdoption:: -x
|
||||||
|
|
||||||
|
@ -547,6 +549,12 @@ These environment variables influence Python's behavior.
|
||||||
value instead of the value got through the C runtime. Only works on
|
value instead of the value got through the C runtime. Only works on
|
||||||
Mac OS X.
|
Mac OS X.
|
||||||
|
|
||||||
|
.. envvar:: PYTHONWARNINGS
|
||||||
|
|
||||||
|
This is the equivalent to the :option:`-W` option. If set to a comma
|
||||||
|
separated string, it is equivalent to specifying :option:`-W` multiple
|
||||||
|
times.
|
||||||
|
|
||||||
|
|
||||||
Debug-mode variables
|
Debug-mode variables
|
||||||
~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
|
@ -4,6 +4,7 @@ import os
|
||||||
import StringIO
|
import StringIO
|
||||||
import sys
|
import sys
|
||||||
import unittest
|
import unittest
|
||||||
|
import subprocess
|
||||||
from test import test_support
|
from test import test_support
|
||||||
|
|
||||||
import warning_tests
|
import warning_tests
|
||||||
|
@ -674,6 +675,42 @@ class PyCatchWarningTests(CatchWarningTests):
|
||||||
module = py_warnings
|
module = py_warnings
|
||||||
|
|
||||||
|
|
||||||
|
class EnvironmentVariableTests(BaseTest):
|
||||||
|
|
||||||
|
def test_single_warning(self):
|
||||||
|
newenv = os.environ.copy()
|
||||||
|
newenv["PYTHONWARNINGS"] = "ignore::DeprecationWarning"
|
||||||
|
p = subprocess.Popen([sys.executable,
|
||||||
|
"-c", "import sys; sys.stdout.write(str(sys.warnoptions))"],
|
||||||
|
stdout=subprocess.PIPE, env=newenv)
|
||||||
|
self.assertEqual(p.stdout.read(), "['ignore::DeprecationWarning']")
|
||||||
|
|
||||||
|
def test_comma_separated_warnings(self):
|
||||||
|
newenv = os.environ.copy()
|
||||||
|
newenv["PYTHONWARNINGS"] = ("ignore::DeprecationWarning,"
|
||||||
|
"ignore::UnicodeWarning")
|
||||||
|
p = subprocess.Popen([sys.executable,
|
||||||
|
"-c", "import sys; sys.stdout.write(str(sys.warnoptions))"],
|
||||||
|
stdout=subprocess.PIPE, env=newenv)
|
||||||
|
self.assertEqual(p.stdout.read(),
|
||||||
|
"['ignore::DeprecationWarning', 'ignore::UnicodeWarning']")
|
||||||
|
|
||||||
|
def test_envvar_and_command_line(self):
|
||||||
|
newenv = os.environ.copy()
|
||||||
|
newenv["PYTHONWARNINGS"] = "ignore::DeprecationWarning"
|
||||||
|
p = subprocess.Popen([sys.executable, "-W" "ignore::UnicodeWarning",
|
||||||
|
"-c", "import sys; sys.stdout.write(str(sys.warnoptions))"],
|
||||||
|
stdout=subprocess.PIPE, env=newenv)
|
||||||
|
self.assertEqual(p.stdout.read(),
|
||||||
|
"['ignore::UnicodeWarning', 'ignore::DeprecationWarning']")
|
||||||
|
|
||||||
|
class CEnvironmentVariableTests(EnvironmentVariableTests):
|
||||||
|
module = c_warnings
|
||||||
|
|
||||||
|
class PyEnvironmentVariableTests(EnvironmentVariableTests):
|
||||||
|
module = py_warnings
|
||||||
|
|
||||||
|
|
||||||
def test_main():
|
def test_main():
|
||||||
py_warnings.onceregistry.clear()
|
py_warnings.onceregistry.clear()
|
||||||
c_warnings.onceregistry.clear()
|
c_warnings.onceregistry.clear()
|
||||||
|
@ -683,6 +720,8 @@ def test_main():
|
||||||
_WarningsTests,
|
_WarningsTests,
|
||||||
CWarningsDisplayTests, PyWarningsDisplayTests,
|
CWarningsDisplayTests, PyWarningsDisplayTests,
|
||||||
CCatchWarningTests, PyCatchWarningTests,
|
CCatchWarningTests, PyCatchWarningTests,
|
||||||
|
CEnvironmentVariableTests,
|
||||||
|
PyEnvironmentVariableTests
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,8 @@ What's New in Python 2.7 beta 1?
|
||||||
Core and Builtins
|
Core and Builtins
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- Issue #7301: Add environment variable $PYTHONWARNINGS.
|
||||||
|
|
||||||
- Issue #8329: Don't return the same lists from select.select when no fds are
|
- Issue #8329: Don't return the same lists from select.select when no fds are
|
||||||
changed.
|
changed.
|
||||||
|
|
||||||
|
|
|
@ -83,6 +83,7 @@ static char *usage_3 = "\
|
||||||
can be supplied multiple times to increase verbosity\n\
|
can be supplied multiple times to increase verbosity\n\
|
||||||
-V : print the Python version number and exit (also --version)\n\
|
-V : print the Python version number and exit (also --version)\n\
|
||||||
-W arg : warning control; arg is action:message:category:module:lineno\n\
|
-W arg : warning control; arg is action:message:category:module:lineno\n\
|
||||||
|
also PYTHONWARNINGS=arg\n\
|
||||||
-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
|
-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
|
||||||
";
|
";
|
||||||
static char *usage_4 = "\
|
static char *usage_4 = "\
|
||||||
|
@ -420,6 +421,16 @@ Py_Main(int argc, char **argv)
|
||||||
(p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0')
|
(p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0')
|
||||||
Py_NoUserSiteDirectory = 1;
|
Py_NoUserSiteDirectory = 1;
|
||||||
|
|
||||||
|
if ((p = Py_GETENV("PYTHONWARNINGS")) && *p != '\0')
|
||||||
|
{
|
||||||
|
char* warning = strtok(p, ",");
|
||||||
|
while (warning != NULL)
|
||||||
|
{
|
||||||
|
PySys_AddWarnOption(warning);
|
||||||
|
warning = strtok(NULL, ",");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (command == NULL && module == NULL && _PyOS_optind < argc &&
|
if (command == NULL && module == NULL && _PyOS_optind < argc &&
|
||||||
strcmp(argv[_PyOS_optind], "-") != 0)
|
strcmp(argv[_PyOS_optind], "-") != 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue