From: Stefan Behnel Date: Wed, 13 Apr 2011 19:23:56 +0000 (+0200) Subject: support test_fail_if_path_exists() decorator in shadow module X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4e192e34ea7c9e5554206f8472075902453024e0;p=cython.git support test_fail_if_path_exists() decorator in shadow module --- diff --git a/Cython/Shadow.py b/Cython/Shadow.py index ff9c44d5..e909a990 100644 --- a/Cython/Shadow.py +++ b/Cython/Shadow.py @@ -15,6 +15,9 @@ def locals(**arg_types): def test_assert_path_exists(path): return _empty_decorator +def test_fail_if_path_exists(path): + return _empty_decorator + class _EmptyDecoratorAndManager(object): def __call__(self, x): return x