Raised when the source text contains invalid syntax. Current implementation raises this exception when the source text into which substitutions are made does not conform to the required syntax.
| 282 | |
| 283 | |
| 284 | class InterpolationSyntaxError(InterpolationError): |
| 285 | """Raised when the source text contains invalid syntax. |
| 286 | |
| 287 | Current implementation raises this exception when the source text into |
| 288 | which substitutions are made does not conform to the required syntax. |
| 289 | """ |
| 290 | |
| 291 | |
| 292 | class InterpolationDepthError(InterpolationError): |
no outgoing calls
no test coverage detected
searching dependent graphs…