diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2015-02-21 19:56:05 +0100 |
---|---|---|
committer | Stefan Behnel <stefan_ml@behnel.de> | 2015-02-21 19:56:05 +0100 |
commit | 15eb19bf5844e36bcb763663d30e9806f1a8cf0c (patch) | |
tree | b35f81f23166da0dfb9958b1c2073fd7063b3a5a /Cython/Utils.py | |
parent | b42255e49a1d408e91488528c725a01a3a1746ce (diff) | |
download | cython-15eb19bf5844e36bcb763663d30e9806f1a8cf0c.tar.gz |
teach Cython.Coverage about "pkg.mod.pyx" file name patterns
Diffstat (limited to 'Cython/Utils.py')
-rw-r--r-- | Cython/Utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Cython/Utils.py b/Cython/Utils.py index 23adef6a6..22f6db773 100644 --- a/Cython/Utils.py +++ b/Cython/Utils.py @@ -21,6 +21,7 @@ def cached_function(f): if res is uncomputed: res = cache[args] = f(*args) return res + wrapper.uncached = f return wrapper def cached_method(f): |