Zhuang Yan
Results
3
issues of
Zhuang Yan
## Version 6.5.0 **17 April 2019** Normal user can add himself with an admin role. It can be reproduced with below sequence 1. Set a normal user as admin. We...
Could you please add line "sess.close()" for each examples? It will mislead new comers like me. :-)
enhancement
with open(file, "wb") as f: f.write(data) f.close() Why use f.close() in with scope? To my understanding, 'with' syntax wll do release task by itself. Am I right?