Re: how can I interpret a file within the interactive interpreter

2007-11-13 Thread Diez B. Roggisch
Peter J. Bismuti wrote: > Still can't get the -m flat to work. Perhaps this feature is not in the > version I am using? Thanks. -m isn't the option you want. -i it is. And yes, -m appeared in later python versions - I'm not exactly sure which one grew it, might be 2.3 or even 2.4. But -i is old

Re: how can I interpret a file within the interactive interpreter

2007-11-13 Thread Peter J. Bismuti
Still can't get the -m flat to work. Perhaps this feature is not in the version I am using? Thanks. -bash-3.00$ python -m test Unknown option: -m usage: python [option] ... [-c cmd | file | -] [arg] ... Try `python -h' for more information. -bash-3.00$ python Python 2.3.4 (#1, Jan 9 2007, 1

Re: how can I interpret a file within the interactive interpreter

2007-11-13 Thread Peter Otten
Peter J. Bismuti wrote: > I want to interpret a file (or whatever you call it) and then keep the > interactive interpreter alive so I can then continue to issue commands. That's what the -i option is for. > How can this be done? I saw online a -m flag but it does not seem to work. -m is us

Re: how can I interpret a file within the interactive interpreter

2007-11-13 Thread Diez B. Roggisch
Peter J. Bismuti wrote: > I want to interpret a file (or whatever you call it) and then keep the > interactive interpreter alive so I can then continue to issue commands. > > How can this be done? I saw online a -m flag but it does not seem to > work. Use the -i-flag. Diez -- http://mail.pyth

how can I interpret a file within the interactive interpreter

2007-11-13 Thread Peter J. Bismuti
I want to interpret a file (or whatever you call it) and then keep the interactive interpreter alive so I can then continue to issue commands. How can this be done? I saw online a -m flag but it does not seem to work. Thanks -- Peter Bismuti Boeing -- http://mail.python.org/mailman/li