From 4e192e34ea7c9e5554206f8472075902453024e0 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Wed, 13 Apr 2011 21:23:56 +0200 Subject: [PATCH] support test_fail_if_path_exists() decorator in shadow module --- Cython/Shadow.py | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.26.2