We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c1440e commit 5b32dfbCopy full SHA for 5b32dfb
azure-pipelines.yml
@@ -22,6 +22,7 @@ jobs:
22
"C:\Program Files\Git\mingw64\bin\curl.exe" -sSf -o rustup-init.exe https://win.rustup.rs/
23
.\rustup-init.exe -y
24
set PATH=%PATH%;%USERPROFILE%\.cargo\bin
25
+ rustup update
26
rustc -V
27
cargo -V
28
displayName: 'Installing Rust'
vm/src/obj/objsequence.rs
@@ -218,6 +218,7 @@ pub fn get_item(
218
219
type DynPyIter<'a> = Box<dyn ExactSizeIterator<Item = &'a PyObjectRef> + 'a>;
220
221
+#[allow(clippy::len_without_is_empty)]
222
pub trait SimpleSeq {
223
fn len(&self) -> usize;
224
fn iter(&self) -> DynPyIter;
0 commit comments