Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/starkbank_ecdsa-2.2.0-py3.8.egg/ellipticcurve/point.py: 89%
9 statements
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-07 07:02 +0000
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-07 07:02 +0000
3class Point:
5 def __init__(self, x=0, y=0, z=0):
6 self.x = x
7 self.y = y
8 self.z = z
10 def __str__(self):
11 return "({x}, {y}, {z})".format(x=self.x, y=self.y, z=self.z)
13 def isAtInfinity(self):
14 return self.y == 0