[issue21496] pyvenv activate_this.py

2014-05-14 Thread couplewavylines
couplewavylines added the comment: "run the command directly...would run with the venv's environment": I'm sorry I didn't realize this, the "You don’t specifically need to activate an environment..." part of the venv docs didn't sink in for me w

[issue9253] argparse: optional subparsers

2014-05-13 Thread couplewavylines
Changes by couplewavylines : -- nosy: +couplewavylines ___ Python tracker <http://bugs.python.org/issue9253> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21496] pyvenv activate_this.py

2014-05-13 Thread couplewavylines
New submission from couplewavylines: Is there any plan to add an 'activate_this.py' to venv? The virtualenv package includes this script. Its purpose is to activate the environment "in-place," from other Python code. One use-case is running multiple WSGI apps that each need

[issue20423] io.StringIO newline param has wrong default

2014-01-28 Thread couplewavylines
couplewavylines added the comment: Serhiy, you're right, I now see the default behavior is "newline='\n'". So, the header is still wrong, and the text is "The default is to do no newline translation" may be incorrect

[issue20423] io.StringIO newline param has wrong default

2014-01-28 Thread couplewavylines
Changes by couplewavylines : Added file: http://bugs.python.org/file33780/no_translation_output.txt ___ Python tracker <http://bugs.python.org/issue20423> ___ ___ Pytho

[issue20423] io.StringIO newline param has wrong default

2014-01-28 Thread couplewavylines
New submission from couplewavylines: In io.StringIO, the newline argument's default is currently documented as "newline=None" in the section header. However, it's described this way: "The default is to do no newline translation." The behavior of io.Str