I'm looking for a way to make a list of string literals in a class.

Example:

class A:
   def method(self):
       print 'A','BC'

>>> ExtractLiterals(A)
['A','BC']

Is this possible? Can anyone point me in the right direction?

Thanks.

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

Reply via email to