diff options
author | Russ Cox <rsc@golang.org> | 2014-10-29 12:25:24 -0400 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2014-10-29 12:25:24 -0400 |
commit | 710efc5a3085f55968c120abb25206fb72c05d46 (patch) | |
tree | 433262b4bdac6643d923971ea21bb39cb69822a7 /lib | |
parent | 40520a21d8b050635a417666db959f75d757fff5 (diff) | |
parent | cc517ca5f7183e7f5d91bf75897b23cc0f4ed04f (diff) | |
download | go-710efc5a3085f55968c120abb25206fb72c05d46.tar.gz |
[dev.garbage] all: merge dev.power64 (5ad5e85cfb99) into dev.garbage
The goal here is to get the big-endian fixes so that
in some upcoming code movement for write barriers
I don't make them unmergeable.
LGTM=rlh
R=rlh
CC=golang-codereviews
https://codereview.appspot.com/166890043
Diffstat (limited to 'lib')
-rw-r--r-- | lib/codereview/codereview.cfg | 1 | ||||
-rw-r--r-- | lib/codereview/codereview.py | 12 |
2 files changed, 10 insertions, 3 deletions
diff --git a/lib/codereview/codereview.cfg b/lib/codereview/codereview.cfg index 2801ebf8d..43dbf3ce3 100644 --- a/lib/codereview/codereview.cfg +++ b/lib/codereview/codereview.cfg @@ -1 +1,2 @@ defaultcc: golang-codereviews@googlegroups.com +contributors: http://go.googlecode.com/hg/CONTRIBUTORS diff --git a/lib/codereview/codereview.py b/lib/codereview/codereview.py index 876264584..3aac8f43c 100644 --- a/lib/codereview/codereview.py +++ b/lib/codereview/codereview.py @@ -3603,11 +3603,17 @@ class MercurialVCS(VersionControlSystem): if use_hg_shell: base_content = RunShell(["hg", "cat", "-r", base_rev, oldrelpath], silent_ok=True) else: - base_content = str(self.repo[base_rev][oldrelpath].data()) + try: + base_content = str(self.repo[base_rev][oldrelpath].data()) + except Exception: + pass is_binary = "\0" in base_content # Mercurial's heuristic if status != "R": - new_content = open(relpath, "rb").read() - is_binary = is_binary or "\0" in new_content + try: + new_content = open(relpath, "rb").read() + is_binary = is_binary or "\0" in new_content + except Exception: + pass if is_binary and base_content and use_hg_shell: # Fetch again without converting newlines base_content = RunShell(["hg", "cat", "-r", base_rev, oldrelpath], |