Re: Making a tiny script language using python: I need a string processing lib

2006-03-04 Thread Sullivan WxPyQtKinter
I have gone over the shlex and cmd and so, but none of them are satisfactory. However, I tried to program this this function on my own and found it pretty easy. Thank you so much for the suggestion, after all. -- http://mail.python.org/mailman/listinfo/python-list

Re: Making a tiny script language using python: I need a string processing lib

2006-03-04 Thread Christos Georgiou
On 2 Mar 2006 17:53:38 -0800, rumours say that "Sullivan WxPyQtKinter" <[EMAIL PROTECTED]> might have written: >I do not know if there is any lib specially designed to process the >strings in scipt language. >for example: >I hope to process the string"print a,b,c,d,e "in the form"command >argument

Re: Making a tiny script language using python: I need a string processing lib

2006-03-02 Thread Paul McGuire
"Sullivan WxPyQtKinter" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I do not know if there is any lib specially designed to process the > strings in scipt language. > for example: > I hope to process the string"print a,b,c,d,e "in the form"command > argumentlist" and return: > {'c

Re: Making a tiny script language using python: I need a string processing lib

2006-03-02 Thread James Stroud
Sullivan WxPyQtKinter wrote: > I do not know if there is any lib specially designed to process the > strings in scipt language. > for example: > I hope to process the string"print a,b,c,d,e "in the form"command > argumentlist" and return: > {'command'='print', > 'argumentlist'=['a','b','c','d','e']

Making a tiny script language using python: I need a string processing lib

2006-03-02 Thread Sullivan WxPyQtKinter
I do not know if there is any lib specially designed to process the strings in scipt language. for example: I hope to process the string"print a,b,c,d,e "in the form"command argumentlist" and return: {'command'='print', 'argumentlist'=['a','b','c','d','e']} Are there any lib to implement this? Id