```python def funcopy(f): """Creates an actual copy of a function, since python copy() does not""" return partial(f) ```