From f579b1d92262b8be5f50dfb01dea0260bd6d91aa Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Sat, 15 Mar 2014 16:22:18 -0500 Subject: [PATCH 1/2] Add note about mock in Python 3.3 Closes #170 --- docs/writing/tests.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/writing/tests.rst b/docs/writing/tests.rst index 62e4ac7d0..6e742d1c4 100644 --- a/docs/writing/tests.rst +++ b/docs/writing/tests.rst @@ -251,7 +251,8 @@ the need to change any other code. mock ---- -mock is a library for testing in Python. +mock is a library for testing in Python. Starting with Python 3.3, it is +available in the standard library. For older versions of python, simply: .. code-block:: console From eec36320ebb961079a21e9e63d1984a7215f9427 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Sat, 15 Mar 2014 18:12:50 -0500 Subject: [PATCH 2/2] Add link to stdlib mock --- docs/writing/tests.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/writing/tests.rst b/docs/writing/tests.rst index 6e742d1c4..cb863c0c2 100644 --- a/docs/writing/tests.rst +++ b/docs/writing/tests.rst @@ -252,7 +252,8 @@ mock ---- mock is a library for testing in Python. Starting with Python 3.3, it is -available in the standard library. For older versions of python, simply: +available in the `standard library