(self)
| 1280 | Decimal('-3.217160342717258261933904529E-7')) |
| 1281 | |
| 1282 | def test___all__(self): |
| 1283 | expected = token.__all__ + [ |
| 1284 | "TokenInfo", "TokenError", "generate_tokens", |
| 1285 | "detect_encoding", "untokenize", "open", "tokenize", |
| 1286 | ] |
| 1287 | self.assertCountEqual(tokenize.__all__, expected) |
| 1288 | |
| 1289 | |
| 1290 | class TestTokenizerAdheresToPep0263(TestCase): |
nothing calls this directly
no test coverage detected