Re: [python-win32] How to get all the variables in a python shell

2008-05-29 Thread Tim Golden
[EMAIL PROTECTED] wrote: I'm currently working on a scientific computation software built in python. What I want to implement is a Matlab style command window - workspace interaction. For example, you type 'a=1' in the command window, and you see a list item named 'a' in the workspace. You

Re: [python-win32] How to get all the variables in a python shell

2008-05-29 Thread Tim Golden
[EMAIL PROTECTED] wrote: I'm currently working on a scientific computation software built in python. What I want to implement is a Matlab style command window - workspace interaction. For example, you type 'a=1' in the command window, and you see a list item named 'a' in the workspace. You

Re: [python-win32] How to get all the variables in a python shell

2008-05-29 Thread Dahlstrom, Roger
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim Golden Sent: Thursday, May 29, 2008 4:11 AM To: Python-Win32 List; [EMAIL PROTECTED] Cc: Python-Win32 List Subject: Re: [python-win32] How to get all the variables in a python shell [EMAIL

Re: [python-win32] How to get all the variables in a python shell

2008-05-29 Thread Paul Moore
On 29/05/2008, Dahlstrom, Roger [EMAIL PROTECTED] wrote: I'd try looking at memcached (http://www.danga.com/memcached/apis.html). No hacking or reimplementation of the interpreter would be necessary, and there's a Python api available. I haven't used it for anything production related, but

Re: [python-win32] How to get all the variables in a python shell

2008-05-29 Thread Tim Golden
[Bizarrely, my mail system seems to be randomly misfiring. If you've already seen this, please ignore!] Tim Golden wrote: Sorry, having seen Roger D's memcached suggestion, I realise I may have misinterpreted your requirement. I thought that you wanted a Python interpreter session to share its

[python-win32] How to get all the variables in a python shell

2008-05-28 Thread ri
Hi! I'm currently working on a scientific computation software built in python. What I want to implement is a Matlab style command window - workspace interaction. For example, you type 'a=1' in the command window, and you see a list item named 'a' in the workspace. You double click the icon