Cleanup: comment blocks

This commit is contained in:
2018-09-02 18:28:27 +10:00
parent 6abb37babc
commit ae57383648
125 changed files with 856 additions and 822 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)
*