[EMAIL PROTECTED] wrote:
> if there is list1 = "[ 'filea', 'fileb', ]", I can get at list by
> doing:
> reallist = eval(list1)
> is there an easier/simpler method of doing the same thing as
realstring
> and reallist lines above?

http://twistedmatrix.com/users/moshez/unrepr.py

Example:

>>> from unrepr import unrepr
>>> unrepr("[ 'filea', 'fileb', ]")
['filea', 'fileb']

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to