Skip to content
Snippets Groups Projects
Commit 158a4a42 authored by Mark D. Roth's avatar Mark D. Roth
Browse files

Add comment about testing with reviewable.

parent 62885421
No related branches found
No related tags found
No related merge requests found
...@@ -50,6 +50,10 @@ _DEFAULT_MAX_JOBS = 16 * multiprocessing.cpu_count() ...@@ -50,6 +50,10 @@ _DEFAULT_MAX_JOBS = 16 * multiprocessing.cpu_count()
_MAX_RESULT_SIZE = 8192 _MAX_RESULT_SIZE = 8192
# NOTE: If you change this, please make sure to test reviewing the
# github PR with http://reviewable.io, which is known to add UTF-8
# characters to the PR description, which leak into the environment here
# and cause failures.
def strip_non_ascii_chars(s): def strip_non_ascii_chars(s):
return ''.join(c for c in s if ord(c) < 128) return ''.join(c for c in s if ord(c) < 128)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment