DeinAlptraum wrote: Just in case re: > you removed a lot of `# type: ignore annotations`
Previously we directly returned the return of the library functions which cannot be annotated correctly as they are added dynamically, so they needed a type-ignore. Since we are now returning the results of a bool cast, the type is clear. Moreover, superfluous type-ignores are treated as type errors themselves, so removing them is not just good style but strictly necessary. https://github.com/llvm/llvm-project/pull/166446 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
