global baz, bletchYou can just writeglobal foo, bar
On Mon, Jan 23, 2017 at 10:43 AM, João Matos <jcrmatos@gmail.com> wrote:
Hello,
I would like to suggest that globals should follow the existing rule (followed by the import statement, the if statement and in other places) for extending beyond 1 line using parentheses.
Like this:
globals (var_1, var_2,
var_3)
instead of what must be done now, which is:
globals var_1, var_2 \
var_3
Best regards,
JM
_______________________________________________
Python-ideas mailing list
Python-ideas@python.org
https://mail.python.org/mailman/listinfo/python-ideas
Code of Conduct: http://python.org/psf/codeofconduct/
--
--Guido van Rossum (python.org/~guido)