Re: Komodo 6, why "Workspace Restore" after every restart?

2010-11-15 Thread Eric Promislow
te.com/forums/komodo-discussion would be a better place to continue this particular discussion? Thanks for bringing up the issue though. Eric Promislow Komodo Developer -- http://mail.python.org/mailman/listinfo/python-list

Re: OT Komodo Edit, line selection gutter is one pixel wide?

2010-07-05 Thread Eric Promislow
will set the margin after a file is opened. You currently can't write a post-file-open trigger in Python, (see bug http://bugs.activestate.com/show_bug.cgi?id=45265) Hope this helps, Eric Promislow Komodo Team Member -- http://mail.python.org/mailman/listinfo/python-list

Re: Vista + Rails 2.0 upgrade => subprocess hangs

2007-12-12 Thread Eric Promislow
> > Your usage of wait() is dangerous. The code can block indefinitely when > the stdout or stderr buffer is full. > > Christian That's what it is. `rake -T` returns more data in Rails 2.0.1 than it did in 1.2.6 -- cross-language breakage logically explained. Thank you, Christian. - Eric -- htt

Vista + Rails 2.0 upgrade => subprocess hangs

2007-12-12 Thread Eric Promislow
Here's a small Python program I use to grab the output from rake: = from subprocess import Popen, PIPE p = Popen(args='c:\\ruby\\bin\\ruby.exe c:\\ruby\\bin\\rake -T', cwd=u'c:\\Users\\ericp\\testing\\file07', shell=True, stdin=None, stderr=PIPE,