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

Unified Diff: gclient_utils.py

Issue 437903002: Add --no-history option to fetch and gclient for shallow clones. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 6 years, 5 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_scm.py ('K') | « gclient_scm.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_utils.py
diff --git a/gclient_utils.py b/gclient_utils.py
index 9c62a2a5b53af41b5aedae595bda06ecc61b1b77..7cea99511f0b59e750dee15c7c77d5b26c40404d 100644
--- a/gclient_utils.py
+++ b/gclient_utils.py
@@ -88,6 +88,9 @@ def IsDateRevision(revision):
"""Returns true if the given revision is of the form "{ ... }"."""
return bool(revision and re.match(r'^\{.+\}$', str(revision)))
+def IsGitSha(text):
wtc 2014/08/03 04:12:49 Nit: I know you listed IsGitSha after another IsXX
Primiano Tucci (use gerrit) 2014/08/03 17:43:34 Oh right, didn't realize that. Done.
+ """Returns true if the given string is a valid hex-encoded sha"""
+ return re.match('^[a-fA-F0-9]{6,40}$', text) != None
def MakeDateRevision(date):
"""Returns a revision representing the latest revision before the given
« gclient_scm.py ('K') | « gclient_scm.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698