Skip to content

Commit 34d5215

Browse files
committed
Remove unused skip_signature
1 parent 89c8c6e commit 34d5215

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

vm/src/builtins/pytype.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -528,11 +528,6 @@ impl PyType {
528528
}
529529

530530
const SIGNATURE_END_MARKER: &str = ")\n--\n\n";
531-
fn skip_signature(doc: &str) -> Option<&str> {
532-
doc.find(SIGNATURE_END_MARKER)
533-
.map(|index| &doc[index + SIGNATURE_END_MARKER.len()..])
534-
}
535-
536531
fn get_signature(doc: &str) -> Option<&str> {
537532
doc.find(SIGNATURE_END_MARKER)
538533
.map(|index| &doc[..index + 1])

0 commit comments

Comments
 (0)