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

Unified Diff: tests/stub-generator/testcfg.py

Issue 8383034: Rename various Proxy classes. Provide a Proxy interface. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years, 2 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
Index: tests/stub-generator/testcfg.py
===================================================================
--- tests/stub-generator/testcfg.py (revision 629)
+++ tests/stub-generator/testcfg.py (working copy)
@@ -67,7 +67,8 @@
t = open(tmp, 'r')
while True:
line = s.readline()
- if not (re.match('^\s+$', line) or line.startswith('//') or line.startswith('#')):
+ if not (re.match('^\s+$', line) or line.startswith('//')
+ or line.startswith('#')):
break
d.write(line)
d.write(t.read())

Powered by Google App Engine
This is Rietveld 408576698