Reverting the Revision: 77368. I committed Flox's big patch for tests by
mistake. ( It may come in for sure tough)
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index a044faf..418337b 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -4598,19 +4598,9 @@
def test_main():
- with warnings.catch_warnings():
- # Silence Py3k warnings
- warnings.filterwarnings("ignore", "classic .+ division",
- DeprecationWarning)
- warnings.filterwarnings("ignore", "coerce.. not supported",
- DeprecationWarning)
- warnings.filterwarnings("ignore", "Overriding __cmp__ ",
- DeprecationWarning)
- warnings.filterwarnings("ignore", ".+slice__ has been removed",
- DeprecationWarning)
- # Run all local test cases, with PTypesLongInitTest first.
- test_support.run_unittest(PTypesLongInitTest, OperatorsTest,
- ClassPropertiesAndMethods, DictProxyTests)
+ # Run all local test cases, with PTypesLongInitTest first.
+ test_support.run_unittest(PTypesLongInitTest, OperatorsTest,
+ ClassPropertiesAndMethods, DictProxyTests)
if __name__ == "__main__":
test_main()