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

Unified Diff: test/win/gyptest-link-base-address.py

Issue 739303003: Cleanup pylint errors (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Fix mac Created 6 years, 1 month 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
« no previous file with comments | « test/subdirectory/gyptest-SYMROOT-default.py ('k') | test/win/gyptest-link-profile.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/win/gyptest-link-base-address.py
diff --git a/test/win/gyptest-link-base-address.py b/test/win/gyptest-link-base-address.py
index f9a5e432ae21a1cb730413c74b070d6e5fd4e2bb..d58527ad7e9377222e5b6aeb1c59be5a481975bf 100644
--- a/test/win/gyptest-link-base-address.py
+++ b/test/win/gyptest-link-base-address.py
@@ -25,7 +25,7 @@ if sys.platform == 'win32':
return test.run_dumpbin('/headers', full_path)
# Extract the image base address from the headers output.
- image_base_reg_ex = re.compile('.*\s+([0-9]+) image base.*', re.DOTALL)
+ image_base_reg_ex = re.compile(r'.*\s+([0-9]+) image base.*', re.DOTALL)
exe_headers = GetHeaders('test_base_specified_exe.exe')
exe_match = image_base_reg_ex.match(exe_headers)
« no previous file with comments | « test/subdirectory/gyptest-SYMROOT-default.py ('k') | test/win/gyptest-link-profile.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698