docs/gc: Mark mem_alloc()/mem_free() as uPy-specific.

This commit is contained in:
Paul Sokolovsky 2017-06-24 13:12:09 +03:00
parent b50659e137
commit 4cdddfed8e
1 changed files with 12 additions and 1 deletions

View File

@ -24,6 +24,17 @@ Functions
Return the number of bytes of heap RAM that are allocated.
.. admonition:: Difference to CPython
:class: attention
This function is MicroPython extension.
.. function:: mem_free()
Return the number of bytes of available heap RAM.
Return the number of bytes of available heap RAM, or -1 if this amount
is not known.
.. admonition:: Difference to CPython
:class: attention
This function is MicroPython extension.