From 495ece2273a0eac09a677da112285f41b06fa693 Mon Sep 17 00:00:00 2001 From: shenjack <3695888@qq.com> Date: Thu, 30 Mar 2023 00:53:56 +0800 Subject: [PATCH] remove unuse __eq__ and __ne__ --- libs/pyglet_rs/src/src/pymath.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/libs/pyglet_rs/src/src/pymath.rs b/libs/pyglet_rs/src/src/pymath.rs index 4ca3e55..a7c3b19 100644 --- a/libs/pyglet_rs/src/src/pymath.rs +++ b/libs/pyglet_rs/src/src/pymath.rs @@ -54,8 +54,6 @@ pub mod python_class { fn __neg__(&self) -> Self; fn __round__(&self, ndigits: Option) -> Self; fn __radd__(&self, other: &PyAny) -> Self; - fn __eq__(&self, other: &Self) -> bool; - fn __ne__(&self, other: &Self) -> bool; // fn rotate }