[issue41616] Global variable in whole project and Relative imports problem

2020-08-24 Thread Guido van Rossum
Change by Guido van Rossum : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue41616] Global variable in whole project and Relative imports problem

2020-08-22 Thread Steven D'Aprano
Steven D'Aprano added the comment: One issue per ticket please. Versions 3.9 and older are all in feature freeze, they will not get new features. Combining a global declaration with an assignment has been requested before, and rejected. If you want to discuss that feature again, you should

[issue41616] Global variable in whole project and Relative imports problem

2020-08-22 Thread ManPython
New submission from ManPython : 1. Curently we have easy option to declare global variable (GV) a) like this: global var1 var1 = 'whatever' b) with some improved version like this: global var1 'whatever' or: global var1,var2, 'whatever1','whatever2' c) The Python is in way to produce small li