##// END OF EJS Templates
typing: disable `signature-mismatch` warnings on a few bytestr functions...
typing: disable `signature-mismatch` warnings on a few bytestr functions Recent versions of pytype complain about this, but it seems like expected behavior.

File last commit:

r45179:1f5ab1a9 default
r50996:b900f40c default
Show More
build.rs
7 lines | 155 B | application/rls-services+xml | RustLexer
fn main() {
cc::Build::new()
.warnings(true)
.file("src/sendfds.c")
.file("src/sighandlers.c")
.compile("procutil");
}