MCPcopy Index your code
hub / github.com/RustPython/RustPython / fmt

Method fmt

crates/stdlib/src/_tokenize.rs:71–76  ·  view source on GitHub ↗
(&self, f: &mut fmt::Formatter<'_>)

Source from the content-addressed store, hash-verified

69
70 impl fmt::Debug for PyTokenizerIter {
71 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
72 f.debug_struct("PyTokenizerIter")
73 .field("extra_tokens", &self.extra_tokens)
74 .field("encoding", &self.encoding)
75 .finish()
76 }
77 }
78
79 #[pyclass(with(Constructor, Iterable, IterNext))]

Callers

nothing calls this directly

Calls 1

finishMethod · 0.45

Tested by

no test coverage detected