Re: InteractiveConsole and namespace

2010-08-29 Thread Arnaud Delobelle
Chris Rebert writes: > On Sat, Aug 28, 2010 at 2:37 PM, David ROBERT wrote: >> Hi all, >> >> I want to use an InteractiveConsole at some stage in a program to >> interact with the local namespace: access, but also modify objects. >> When the interactive console ends (ctrl-d) I want the program t

Re: InteractiveConsole and namespace

2010-08-28 Thread Chris Rebert
On Sat, Aug 28, 2010 at 2:37 PM, David ROBERT wrote: > Hi all, > > I want to use an InteractiveConsole at some stage in a program to > interact with the local namespace: access, but also modify objects. > When the interactive console ends (ctrl-d) I want the program to > continue processing with t

InteractiveConsole and namespace

2010-08-28 Thread David ROBERT
Hi all, I want to use an InteractiveConsole at some stage in a program to interact with the local namespace: access, but also modify objects. When the interactive console ends (ctrl-d) I want the program to continue processing with the variables that may have been modified interactively. The code