Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Unified Diff: gclient_utils.py

Issue 101713003: Clean up gclient MergeDependencies (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: rebase (no code changes) Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gclient.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_utils.py
diff --git a/gclient_utils.py b/gclient_utils.py
index 47ea50286bf9e2e66347395dd3595966075e0233..cd92843bdae778804d9bdda04de1711a6cf3e7bb 100644
--- a/gclient_utils.py
+++ b/gclient_utils.py
@@ -957,3 +957,16 @@ def NumLocalCpus():
# Mac OS 10.6 only
# pylint: disable=E1101
return int(os.sysconf('SC_NPROCESSORS_ONLN'))
+
+
+class BaseRecord(object):
+ """Base class for objects with equality by value."""
+ @property
+ def __key__(self):
+ return (self.__class__, tuple(self.__dict__.iteritems()))
+
+ def __eq__(self, other):
+ return self.__key__ == getattr(other, '__key__', None)
+
+ def __hash__(self):
+ return hash(self.__key__)
« no previous file with comments | « gclient.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698