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

Unified Diff: gclient_utils.py

Issue 6873110: Add --transitive flag. (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/depot_tools/
Patch Set: '' Created 9 years, 8 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
Index: gclient_utils.py
===================================================================
--- gclient_utils.py (revision 82287)
+++ gclient_utils.py (working copy)
@@ -112,6 +112,14 @@
return tuple(components)
+def IsDateRevision(revision):
+ """Returns true if the given revision is of the form "{ ... }"."""
+ if revision is None: return False
M-A Ruel 2011/04/20 15:43:28 keep on two lines by style guide.
Florian Loitsch 2011/04/20 18:32:01 Done.
+ str_revision = str(revision)
+ if len(str_revision) < 2: return False
+ return str_revision[0] == '{' and str_revision[-1] == '}'
M-A Ruel 2011/04/20 15:43:28 return bool(re.match(r'^\{.+\}$', str(revision)))
Florian Loitsch 2011/04/20 18:32:01 Done.
+
+
def SyntaxErrorToError(filename, e):
"""Raises a gclient_utils.Error exception with the human readable message"""
try:

Powered by Google App Engine
This is Rietveld 408576698