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_buffer.py b/Lib/test/test_buffer.py
index ac89e05..3bede88 100644
--- a/Lib/test/test_buffer.py
+++ b/Lib/test/test_buffer.py
@@ -6,7 +6,6 @@
 
 import unittest
 from test import test_support
-import warnings
 
 class BufferTests(unittest.TestCase):
 
@@ -24,11 +23,7 @@
 
 
 def test_main():
-    with warnings.catch_warnings():
-        # Silence Py3k warning
-        warnings.filterwarnings("ignore", "buffer.. not supported",
-                                DeprecationWarning)
-        test_support.run_unittest(BufferTests)
+    test_support.run_unittest(BufferTests)
 
 if __name__ == "__main__":
     test_main()