Return object as STRING expression (string literal constant).
(obj, kind=1)
| 987 | |
| 988 | |
| 989 | def as_string(obj, kind=1): |
| 990 | """Return object as STRING expression (string literal constant). |
| 991 | """ |
| 992 | return Expr(Op.STRING, (obj, kind)) |
| 993 | |
| 994 | |
| 995 | def as_array(obj): |