Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: chainedconfigparser.py

Issue 29345187: Noissue - Got rid of non-defualt script encodings in buildtools (Closed)
Patch Set: Created May 28, 2016, 12:23 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build.py ('k') | ensure_dependencies.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # coding: utf-8
2
3 # This Source Code Form is subject to the terms of the Mozilla Public 1 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this 2 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 4
7 import os 5 import os
8 import io 6 import io
9 import ConfigParser 7 import ConfigParser
10 from StringIO import StringIO 8 from StringIO import StringIO
11 9
12 10
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 raise NotImplementedError 164 raise NotImplementedError
167 165
168 def add_section(self, section): 166 def add_section(self, section):
169 raise NotImplementedError 167 raise NotImplementedError
170 168
171 def remove_option(self, section, option): 169 def remove_option(self, section, option):
172 raise NotImplementedError 170 raise NotImplementedError
173 171
174 def remove_section(self, section): 172 def remove_section(self, section):
175 raise NotImplementedError 173 raise NotImplementedError
OLDNEW
« no previous file with comments | « build.py ('k') | ensure_dependencies.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld