Commit ecca40fe authored by Mikhail Korobov's avatar Mikhail Korobov

DOC proper use of free

parent f372acae
...@@ -390,7 +390,7 @@ could look as follows:: ...@@ -390,7 +390,7 @@ could look as follows::
try: try:
return s[:length].decode('UTF-8', 'strict') return s[:length].decode('UTF-8', 'strict')
finally: finally:
stdlib.free(s) free(s)
Most likely, you will prefer shorter function names in your code based Most likely, you will prefer shorter function names in your code based
on the kind of string being handled. Different types of content often on the kind of string being handled. Different types of content often
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment