summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_undocumented_details.py
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-01-08 19:04:16 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-01-08 19:04:16 (GMT)
commitce8e33a095030e7af94f58f9da196b240bdf0476 (patch)
treeb0ba50cbb6e85c6be6f6e6a870e4232be50a0f9c /Lib/test/test_undocumented_details.py
parent3ddc435af6873c6304058d7bcbcb19ee4fba7781 (diff)
downloadcpython-ce8e33a095030e7af94f58f9da196b240bdf0476.zip
cpython-ce8e33a095030e7af94f58f9da196b240bdf0476.tar.gz
cpython-ce8e33a095030e7af94f58f9da196b240bdf0476.tar.bz2
Reverting the Revision: 77368. I committed Flox's big patch for tests by
mistake. ( It may come in for sure tough)
Diffstat (limited to 'Lib/test/test_undocumented_details.py')
-rw-r--r--Lib/test/test_undocumented_details.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/test/test_undocumented_details.py b/Lib/test/test_undocumented_details.py
index f3508fc..ca66c19 100644
--- a/Lib/test/test_undocumented_details.py
+++ b/Lib/test/test_undocumented_details.py
@@ -1,4 +1,4 @@
-from test.test_support import run_unittest, check_warnings
+from test.test_support import run_unittest, have_unicode
import unittest
import sys
@@ -33,9 +33,7 @@ class TestImplementationComparisons(unittest.TestCase):
self.assertTrue(g_cell != h_cell)
def test_main():
- # Silence Py3k warnings
- with check_warnings():
- run_unittest(TestImplementationComparisons)
+ run_unittest(TestImplementationComparisons)
if __name__ == '__main__':
test_main()