Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #37234 > unrolled thread
| Started by | Terry Reedy <tjreedy@udel.edu> |
|---|---|
| First post | 2013-01-21 18:38 -0500 |
| Last post | 2013-01-21 18:38 -0500 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: Windows subprocess.call problem Terry Reedy <tjreedy@udel.edu> - 2013-01-21 18:38 -0500
| From | Terry Reedy <tjreedy@udel.edu> |
|---|---|
| Date | 2013-01-21 18:38 -0500 |
| Subject | Re: Windows subprocess.call problem |
| Message-ID | <mailman.769.1358811545.2939.python-list@python.org> |
On 1/21/2013 6:22 PM, Tom Borkin wrote: > nobody@nowhere.com <mailto:nobody@nowhere.com> had an excellent > suggestion that worked right off the bat and achieved exactly what I was > after. Thanks all! And what was it? > > On Mon, Jan 21, 2013 at 9:04 AM, Dave Angel <d@davea.name > <mailto:d@davea.name>> wrote: > > On 01/21/2013 06:25 AM, Tom Borkin wrote: > > Hi; > I have this code: > <snip> > > for song in my_songs: > subprocess.call(['notepad.exe'__, '%s.txt' % song]) > print song > > It opens the first song and hangs on subsequent songs. It > doesn't open the > next song or execute the print until I have closed the first > one. I want it > to open all in the list, one after another, so I have all those > songs > available. Please advise. > > > Why not just pass all the filenames as parameters in one invocation > of notepad? Assuming Notepad is written reasonably, that'll give it > all to you in one window, instead of opening many separate ones. -- Terry Jan Reedy
Back to top | Article view | comp.lang.python
csiph-web