Glossary coding Term Page

functools.wraps

a helper that preserves original names and docstrings when writing decorators

functools-wraps #coding#python
Korean version

Related Concepts

Core Idea

functools.wraps is a helper that preserves original names and docstrings when writing decorators. It usually makes the most sense alongside Higher-order function, Closure, Decorator.

Why It Matters Here

Mathbong reuses this term across python posts as shared vocabulary.

Posts Mentioning This Concept