summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/unittest/main.py3
-rw-r--r--Misc/NEWS.d/next/Library/2021-12-29-19-37-49.bpo-22859.AixHW7.rst1
2 files changed, 4 insertions, 0 deletions
diff --git a/Lib/unittest/main.py b/Lib/unittest/main.py
index e62469a..cb8f1f3 100644
--- a/Lib/unittest/main.py
+++ b/Lib/unittest/main.py
@@ -3,6 +3,7 @@
import sys
import argparse
import os
+import warnings
from . import loader, runner
from .signals import installHandler
@@ -101,6 +102,8 @@ class TestProgram(object):
self.runTests()
def usageExit(self, msg=None):
+ warnings.warn("TestProgram.usageExit() is deprecated and will be"
+ " removed in Python 3.13", DeprecationWarning)
if msg:
print(msg)
if self._discovery_parser is None:
diff --git a/Misc/NEWS.d/next/Library/2021-12-29-19-37-49.bpo-22859.AixHW7.rst b/Misc/NEWS.d/next/Library/2021-12-29-19-37-49.bpo-22859.AixHW7.rst
new file mode 100644
index 0000000..f6380b0
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-12-29-19-37-49.bpo-22859.AixHW7.rst
@@ -0,0 +1 @@
+:meth:`~unittest.TestProgram.usageExit` is marked deprecated, to be removed in 3.13.