Merge pull request #4719 from RustPython/DimitrisJim-patch-1

Update anystr.rs
This commit is contained in:
Jeong YunWon
2023-03-19 04:55:56 +09:00
committed by GitHub

View File

@@ -376,8 +376,8 @@ pub trait AnyStr {
}
}
# TODO: remove this function from anystr.
# See https://github.com/RustPython/RustPython/pull/4709/files#r1141013993
// TODO: remove this function from anystr.
// See https://github.com/RustPython/RustPython/pull/4709/files#r1141013993
fn py_bytes_splitlines<FW, W>(&self, options: SplitLinesArgs, into_wrapper: FW) -> Vec<W>
where
FW: Fn(&Self) -> W,