Monty @ The Python Coding Place @thepythoncodingplace.com · Mar 22 Here's the code from Day 5 again 0 likes 1 replies ? Reply Replies Monty @ The Python Coding Place · Mar 22 In the function-based decorator, `limit` is a local variable in the outer function. However, it's accessible by the inner functions even when the outer function has returned. This is the concept of closures we discussed on Day 1.