Skip to content

Commit

Permalink
#[cfg(not(PyPy))]
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelhly committed Oct 16, 2023
1 parent f66c610 commit 5005fc3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/types/mappingproxy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,13 @@ where
#[cfg(test)]
mod tests {
use super::*;
#[cfg(not(PyPy))]
use crate::type_object::PyTypeInfo;
#[cfg(not(PyPy))]
use crate::types::dict::*;
use crate::Python;
use crate::{
exceptions::PyKeyError,
type_object::PyTypeInfo,
types::dict::{PyDictItems, PyDictKeys, PyDictValues},
types::{PyInt, PyString, PyTuple},
};
use std::collections::{BTreeMap, HashMap};
Expand Down

0 comments on commit 5005fc3

Please sign in to comment.