-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpointstore1.py
51 lines (40 loc) · 1.56 KB
/
pointstore1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python3
# Copyright © 2012-13 Qtrac Ltd. All rights reserved.
# This program or module is free software: you can redistribute it
# and/or modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version. It is provided for
# educational purposes and is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
import sys
import time
def main():
regression = False
size = int(1e6)
if len(sys.argv) > 1 and sys.argv[1] == "-P":
regression = True
size = 20
start = time.clock()
points = []
for i in range(size):
points.append(Point(i, i ** 2, i // 2))
end = time.clock() - start
assert points[size - 1].x == size - 1
assert points[size - 1].color is None
print(len(points))
if not regression: # wait until we can see how much memory is used
print("took {} secs to create {:,} points".format(end, size))
input("press Enter to finish")
class Point:
__slots__ = ("x", "y", "z", "color")
def __init__(self, x=0, y=0, z=0, color=None):
self.x = x
self.y = y
self.z = z
self.color = color
def __repr__(self):
return "Point({0.x!r}, {0.y!r}, {0.z!r}, {0.color!r})".format(self)
if __name__ == "__main__":
main()