Re: [PyInstaller] Python, Windows and no console environments

2017-03-31 Thread Coyot Linden (Glenn Glazer)
You're welcome! Best, coyot On 3/31/17 03:03, Jones, Bryan wrote: Aargh, you're correct. Thanks for the catch! Fixed. Bryan On Thu, Mar 30, 2017 at 3:55 PM, Coyot Linden

Re: [PyInstaller] Python, Windows and no console environments

2017-03-31 Thread Jones, Bryan
Aargh, you're correct. Thanks for the catch! Fixed. Bryan On Thu, Mar 30, 2017 at 3:55 PM, Coyot Linden (Glenn Glazer) < co...@lindenlab.com> wrote: > Oh, and I found another bug in the recipe. In: > > ret = {'stdout:': subprocess.PIPE} > > There is an extra colon inside the key. Since

Re: [PyInstaller] Python, Windows and no console environments

2017-03-30 Thread Coyot Linden (Glenn Glazer)
Oh, and I found another bug in the recipe.  In: ret = {'stdout:': subprocess.PIPE} There is an extra colon inside the key.  Since subprocess doesn't know what 'stdout:', this causes its init() to throw a type exception. Best,

Re: [PyInstaller] Python, Windows and no console environments

2017-03-27 Thread Jones, Bryan
Thanks, fixed! On Mon, Mar 20, 2017 at 3:40 PM, Coyot Linden (Glenn Glazer) < co...@lindenlab.com> wrote: > On 3/20/17 12:01, Coyot Linden (Glenn Glazer) wrote: > > On 3/16/17 10:07, Jones, Bryan wrote: > > This link might be relevant -- https://github.com/ >

Re: [PyInstaller] Python, Windows and no console environments

2017-03-20 Thread Coyot Linden (Glenn Glazer)
On 3/20/17 12:01, Coyot Linden (Glenn Glazer) wrote: On 3/16/17 10:07, Jones, Bryan wrote: This link might be relevant -- https://github.com/pyinstaller/pyinstaller/wiki/Recipe-subprocess Have you tried those suggestions?

Re: [PyInstaller] Python, Windows and no console environments

2017-03-16 Thread Jones, Bryan
Steve, Great idea -- thanks! Bryan On Thu, Mar 16, 2017 at 12:51 PM, Steve Barnes wrote: > I have also raised an issue on the cpython manuals, > http://bugs.python.org/issue29829, requesting a note be added to the > subprocess documentation. > > Steve > > On 16/03/2017

Re: [PyInstaller] Python, Windows and no console environments

2017-03-16 Thread Coyot Linden (Glenn Glazer)
Good to know, Steve. After flailing at this for a couple of days, it's good to see someone else describe this as "hard to debug"! Pity there isn't any kind of voting method on Python Tracker, I'd surely +1 this one. Best, coyot On 3/16/17 10:51, Steve Barnes wrote: I have also raised an

Re: [PyInstaller] Python, Windows and no console environments

2017-03-16 Thread Steve Barnes
I have also raised an issue on the cpython manuals, http://bugs.python.org/issue29829, requesting a note be added to the subprocess documentation. Steve On 16/03/2017 17:24, Coyot Linden (Glenn Glazer) wrote: > No, I hadn't seen that. > > Thanks for the pointer! > > Best, > > coyot > > > On

Re: [PyInstaller] Python, Windows and no console environments

2017-03-16 Thread Coyot Linden (Glenn Glazer)
No, I hadn't seen that. Thanks for the pointer! Best, coyot On 3/16/17 10:07, Jones, Bryan wrote: This link might be relevant -- https://github.com/pyinstaller/pyinstaller/wiki/Recipe-subprocess

Re: [PyInstaller] Python, Windows and no console environments

2017-03-16 Thread Jones, Bryan
This link might be relevant -- https://github.com/pyinstaller/pyinstaller/wiki/Recipe-subprocess Have you tried those suggestions? On Thu, Mar 16, 2017 at 10:47 AM, Coyot Linden (Glenn Glazer) < co...@lindenlab.com> wrote: > We discovered that code which ran perfectly correctly by executing the