OLD | NEW |
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 883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
894 | 894 |
895 Python on OSX 10.6 raises a NotImplementedError exception. | 895 Python on OSX 10.6 raises a NotImplementedError exception. |
896 """ | 896 """ |
897 try: | 897 try: |
898 import multiprocessing | 898 import multiprocessing |
899 return multiprocessing.cpu_count() | 899 return multiprocessing.cpu_count() |
900 except: # pylint: disable=W0702 | 900 except: # pylint: disable=W0702 |
901 # Mac OS 10.6 only | 901 # Mac OS 10.6 only |
902 # pylint: disable=E1101 | 902 # pylint: disable=E1101 |
903 return int(os.sysconf('SC_NPROCESSORS_ONLN')) | 903 return int(os.sysconf('SC_NPROCESSORS_ONLN')) |
| 904 |
| 905 |
| 906 class BaseRecord(object): |
| 907 """Base class for objects with equality by value.""" |
| 908 @property |
| 909 def __key__(self): |
| 910 return (self.__class__, tuple(self.__dict__.iteritems())) |
| 911 |
| 912 def __eq__(self, other): |
| 913 return self.__key__ == getattr(other, '__key__', None) |
| 914 |
| 915 def __hash__(self): |
| 916 return hash(self.__key__) |
OLD | NEW |