From 41c88ff42e3ab7af8e9b3e4732abed2eb210e5aa Mon Sep 17 00:00:00 2001 From: patraabinash29 <63745266+patraabinash29@users.noreply.github.com> Date: Wed, 13 Oct 2021 13:11:00 +0530 Subject: [PATCH] Update ellipticcurve.py --- ellipticcurve.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ellipticcurve.py b/ellipticcurve.py index 82acad1..84d0053 100755 --- a/ellipticcurve.py +++ b/ellipticcurve.py @@ -253,7 +253,6 @@ def __rmul__(self,multip): # Overload the "*" operator def __imul__(self,multip): # Overload the "*=" operator self = self.mult(multip) return self - ############################################################################ # License: Freely available for use, abuse and modification # (this is the Simplified BSD License, aka FreeBSD license) @@ -289,3 +288,4 @@ def __imul__(self,multip): # Overload the "*=" operator # Added iterator # Added call (coerce list as point on curve) # Changed list to tuple for (x,y) - fix comparison bug +# List to tuple conversion is so easy as well as any datatype to another