Tagged Questions

7
votes
6answers
2k views

How to write meaningful docstrings?

What, in Your opinion is a meaningful docstring? What do You expect to be described there? For example, consider this Python class's __init__: def __init__(self, name, value, displayName=None, ...
3
votes
4answers
469 views

Are Python docstrings and comments stored in memory when module is loaded?

Are Python docstrings and comments stored in memory when module is loaded? I've wondered if this is true, because I usually document my code well; may this affect memory usage? Usually every ...