From b99e7f62b2fb63eab4ee0fe822a9a5366f2bd1cd Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Tue, 17 Sep 2024 21:32:23 +0900 Subject: [PATCH] Add pystruct(skip) --- vm/src/stdlib/time.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vm/src/stdlib/time.rs b/vm/src/stdlib/time.rs index 0ed36d2c3..86b6927fd 100644 --- a/vm/src/stdlib/time.rs +++ b/vm/src/stdlib/time.rs @@ -451,7 +451,9 @@ mod decl { tm_wday: PyObjectRef, tm_yday: PyObjectRef, tm_isdst: PyObjectRef, + #[pystruct(skip)] tm_gmtoff: PyObjectRef, + #[pystruct(skip)] tm_zone: PyObjectRef, }