(x)
| 107 | |
| 108 | |
| 109 | def literal_name(x): |
| 110 | if not isinstance(x, PSLiteral): |
| 111 | if STRICT: |
| 112 | raise PSTypeError('Literal required: %r' % x) |
| 113 | else: |
| 114 | return str(x) |
| 115 | return x.name |
| 116 | |
| 117 | def keyword_name(x): |
| 118 | if not isinstance(x, PSKeyword): |
no test coverage detected
searching dependent graphs…