mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
vm/function/{byteslike -> buffer}.rs
those types are buffer utilities byteslike is one of them
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
mod argument;
|
||||
mod byteslike;
|
||||
mod buffer;
|
||||
mod number;
|
||||
|
||||
use crate::{
|
||||
@@ -14,7 +14,7 @@ use std::marker::PhantomData;
|
||||
use std::ops::RangeInclusive;
|
||||
|
||||
pub use argument::{ArgCallable, ArgIterable};
|
||||
pub use byteslike::{ArgBytesLike, ArgMemoryBuffer, ArgStrOrBytesLike};
|
||||
pub use buffer::{ArgBytesLike, ArgMemoryBuffer, ArgStrOrBytesLike};
|
||||
pub use number::{ArgIntoBool, ArgIntoComplex, ArgIntoFloat};
|
||||
|
||||
/// Implemented by any type that can be returned from a built-in Python function.
|
||||
|
||||
Reference in New Issue
Block a user