|
|
|
|
|
by jsnathan
3627 days ago
|
|
>>> import pysize
>>> import sys
>>> pysize.get_size([])
0
>>> sys.getsizeof([])
72
>>> a = [[],{},()]
>>> pysize.get_size(a)
0
>>> sys.getsizeof(a)
96 # probably also wrong?
It's cool idea, but needs a bit more work I think. |
|
I've fixed the bug causing the above, thank you for the call out!