(&self)
| 1086 | |
| 1087 | #[pymethod] |
| 1088 | fn isprintable(&self) -> bool { |
| 1089 | self.char_all(|c| c == '\u{0020}' || rustpython_literal::char::is_printable(c)) |
| 1090 | } |
| 1091 | |
| 1092 | #[pymethod] |
| 1093 | fn isspace(&self) -> bool { |
nothing calls this directly
no test coverage detected