micropython.mem_info: Clean up docstring.

Say the same with less words.
This commit is contained in:
Laurens Valk
2021-07-14 15:31:41 +02:00
parent 3ed6e2dd7d
commit 28af77fcfc
+3 -5
View File
@@ -72,12 +72,10 @@ def mem_info(verbose: Any) -> None:
def mem_info(*args):
"""
Print information about currently used memory. If the ``verbose`` argument
is given then extra information is printed.
Prints information about stack and heap memory usage.
The information that is printed is implementation dependent, but currently
includes the amount of stack and heap used. In verbose mode it prints out
the entire heap indicating which blocks are used and which are free.
If the ``verbose`` argument is given, it also prints out
the entire heap, indicating which blocks are used and which are free.
"""