Chromium Code Reviews| Index: appengine/findit/common/constants.py |
| diff --git a/appengine/findit/common/constants.py b/appengine/findit/common/constants.py |
| index b0ee80af3dcd7b70e56ec4198505dd94972d61b0..a7db3ce8cec80278987c0b3e35172fb63141933c 100644 |
| --- a/appengine/findit/common/constants.py |
| +++ b/appengine/findit/common/constants.py |
| @@ -29,3 +29,7 @@ COMPILE_STEP_NAME = 'compile' |
| # Directory of html templates. |
| HTML_TEMPLATE_DIR = os.path.realpath( |
| os.path.join(os.path.dirname(__file__), os.path.pardir, 'templates')) |
| + |
| + |
| +# Used in line distance and priority for crashes. |
| +INFINITY = 1000 |
|
Martin Barbella
2016/05/05 18:33:41
This feels a bit hacky.
Sharu Jiang
2016/05/10 03:11:02
I am not sure what's the better way, since move th
|