dcantrell / pyparted

Python bindings for GNU parted (libparted)
GNU General Public License v2.0
85 stars 42 forks source link

Do not support and use hashing on pyparted's objects (#1229186) #14

Closed vpodzime closed 9 years ago

vpodzime commented 9 years ago

The current implementations of hash methods are not much useful because the hash is calculated from things like object addresses, which makes it unusable for comparing two (deep) copies of the same object which is what's usually done.

dcantrell commented 9 years ago

Looks fine to me. Thanks.