Commit 30c928cc by willmcgugan

New fs.functools module I forgot to commit earlier

parent 8e9b6e8b
"""A version of wraps for Python versions that don't support it"""
try:
from functools import wraps as wraps
except ImportError:
wraps = lambda f: lambda f: f
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment