rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index f437c8d..4f321dc 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -576,7 +576,7 @@
       instance.
 
 
-   .. method:: skip(reason)
+   .. method:: skipTest(reason)
 
       Calling this during the a test method or :meth:`setUp` skips the current
       test.  See :ref:`unittest-skipping` for more information.