On Fri, Feb 5, 2021 at 7:59 PM Barry Scott <[email protected]> wrote: > > I'm under the impression that new users will not create a venv. > Indeed I run a lot of python scripts outside of venv world. > I only use venv as part of my development pipe lines. > > I not sure that a venv cfg file would not help. > But a python.ini could. >
python.exe lookup pyvenv.cfg even outside of venv. So we can write utf8mode=1 in pyvenv.cfg even outside of venv. The main limitation is that users can not write config file in install location when Python is installed for system, not for user. Regards, -- Inada Naoki <[email protected]> _______________________________________________ Python-ideas mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-ideas.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/KQXW4JWWWLQSIQPMEZGCS7W4JDBNOPV2/ Code of Conduct: http://python.org/psf/codeofconduct/
