• Facebook
  • Twitter
  • Reddit
  • StumbleUpon
  • Digg
  • email

All Samples(1105)  |  Call(1)  |  Derive(2)  |  Import(1102)
str(object) -> string

Return a nice string representation of the object.
If the argument is a string, the return value is the same object.

src/a/l/alexandria-HEAD/src/alexandria/sessions/db/models.py   alexandria(Download)
        ('List', lambda v: simplejson.loads(v)), 
        ('Long', lambda v: types.LongType(v)), 
        ('None', lambda v: None), 
        ('String', lambda v: types.StringType(v)), 
        ('Tuple', lambda v: tuple(simplejson.loads(v))), 
        ('Unicode', lambda v: types.UnicodeType(v)), 
    ]