Remove unnecessary "global" statement -- already in global context. Python 2.1 complained about this because the global was assigned to before the global statement, all in a single scope.
Showing
Please register or sign in to comment
Remove unnecessary "global" statement -- already in global context. Python 2.1 complained about this because the global was assigned to before the global statement, all in a single scope.