From 2e230578043f3967751b0f515994f5ee42d41183 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Fri, 6 Jan 2012 20:40:14 +0000 Subject: [PATCH] remove nonsennse part of commit related to "mp" shortcut. I wonder if introducing "mp" as a shortcut to monkeypatch is a good idea, actually :) --- CHANGELOG | 1 - doc/monkeypatch.txt | 5 ----- 2 files changed, 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index d24d2c02f..8a02ee465 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -10,7 +10,6 @@ Changes between 2.2.1 and 2.2.2.dev - fix issue106: allow parametrize to be applied multiple times e.g. from module, class and at function level. - add chdir method to monkeypatch funcarg -- add "mp" funcargs as a shortcut for "monkeypatch" - fix crash resulting from calling monkeypatch undo a second time Changes between 2.2.0 and 2.2.1 diff --git a/doc/monkeypatch.txt b/doc/monkeypatch.txt index 1f9090ce4..74c63b850 100644 --- a/doc/monkeypatch.txt +++ b/doc/monkeypatch.txt @@ -37,11 +37,6 @@ Here our test function monkeypatches ``os.path.expanduser`` and then calls into an function that calls it. After the test function finishes the ``os.path.expanduser`` modification will be undone. -.. note:: - - As with version 2.2.2 there is a ``mp`` function argument - which is a shortcut for "monkeypatch". - Method reference of the monkeypatch function argument -----------------------------------------------------