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

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
« gclient.py ('K') | « gclient_scm.py ('k') | tests/gclient_scm_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_utils.py
===================================================================
--- gclient_utils.py (revision 82287)
+++ gclient_utils.py (working copy)
@@ -112,6 +112,19 @@
return tuple(components)
+def IsDateRevision(revision):
+ """Returns true if the given revision is of the form "{ ... }"."""
+ if revision is None:
M-A Ruel 2011/04/21 23:54:58 return bool(revision and re.match(r'^\{.+\}$', str
Florian Loitsch 2011/04/26 12:53:06 Done.
+ return False
+ return bool(re.match(r'^\{.+\}$', str(revision)))
+
+
+def MakeDateRevision(date):
+ """Returns a revision representing the latest revision before the given
+ date."""
+ return "{" + date + "}"
+
+
def SyntaxErrorToError(filename, e):
"""Raises a gclient_utils.Error exception with the human readable message"""
try:
« gclient.py ('K') | « gclient_scm.py ('k') | tests/gclient_scm_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698