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

Side by Side 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, 9 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 unified diff | Download patch
« no previous file with comments | « gclient.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Generic utils.""" 5 """Generic utils."""
6 6
7 import codecs 7 import codecs
8 import logging 8 import logging
9 import os 9 import os
10 import pipes 10 import pipes
(...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after
950 950
951 Python on OSX 10.6 raises a NotImplementedError exception. 951 Python on OSX 10.6 raises a NotImplementedError exception.
952 """ 952 """
953 try: 953 try:
954 import multiprocessing 954 import multiprocessing
955 return multiprocessing.cpu_count() 955 return multiprocessing.cpu_count()
956 except: # pylint: disable=W0702 956 except: # pylint: disable=W0702
957 # Mac OS 10.6 only 957 # Mac OS 10.6 only
958 # pylint: disable=E1101 958 # pylint: disable=E1101
959 return int(os.sysconf('SC_NPROCESSORS_ONLN')) 959 return int(os.sysconf('SC_NPROCESSORS_ONLN'))
960
961
962 class BaseRecord(object):
963 """Base class for objects with equality by value."""
964 @property
965 def __key__(self):
966 return (self.__class__, tuple(self.__dict__.iteritems()))
967
968 def __eq__(self, other):
969 return self.__key__ == getattr(other, '__key__', None)
970
971 def __hash__(self):
972 return hash(self.__key__)
OLDNEW
« 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