Cleanup: comment blocks

This commit is contained in:
2018-09-02 18:51:31 +10:00
parent 8a3b548cb2
commit 0ddf3e110e
85 changed files with 570 additions and 540 deletions

View File

@@ -691,7 +691,7 @@ PyObject *PyC_UnicodeFromByte(const char *str)
* Description: This function creates a new Python dictionary object.
* note: dict is owned by sys.modules["__main__"] module, reference is borrowed
* note: important we use the dict from __main__, this is what python expects
* for 'pickle' to work as well as strings like this...
* for 'pickle' to work as well as strings like this...
* >> foo = 10
* >> print(__import__("__main__").foo)
*