Skip to content
Prev Previous commit
Next Next commit
Fix doctest
  • Loading branch information
ShaharNaveh committed Feb 3, 2026
commit e7616e51fd2f13663bc6d83bb64dbbd768280dab
6 changes: 5 additions & 1 deletion crates/compiler-core/src/bytecode/oparg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,11 @@ impl fmt::Display for UnpackExArgs {
///
/// # Examples
///
/// ```rust
/// ```ignore
/// use num_enum::TryFromPrimitive;
///
/// use rustpython_compiler_core::marshal::MarshalError;
///
/// #[derive(TryFromPrimitive)]
/// #[num_enum(error_type(name = MarshalError, constructor = new_invalid_bytecode))]
/// #[repr(u8)]
Expand Down
Loading