Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa85c93 commit 8a4bba8Copy full SHA for 8a4bba8
1 file changed
Lib/test/test_array.py
@@ -215,6 +215,14 @@ class BaseTest:
215
# outside: An entry that is not in example
216
# minitemsize: the minimum guaranteed itemsize
217
218
+ def setUp(self):
219
+ self.enterContext(warnings.catch_warnings())
220
+ warnings.filterwarnings(
221
+ "ignore",
222
+ message="The 'u' type code is deprecated and "
223
+ "will be removed in Python 3.16",
224
+ category=DeprecationWarning)
225
+
226
def assertEntryEqual(self, entry1, entry2):
227
self.assertEqual(entry1, entry2)
228
0 commit comments