Chromium Code Reviews| Index: native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/README |
| diff --git a/native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/README b/native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/README |
| index 91da20ec7d975e9024b99b26772d9b4a6010cdc4..bec8c97698d736bcbf099f5bd467053ca29ff0ac 100644 |
| --- a/native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/README |
| +++ b/native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/README |
| @@ -19,3 +19,19 @@ distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| +====================== |
| + |
| +Diff: |
| +--- a/native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/__init__.py |
| ++++ b/native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/__init__.py |
| +@@ -22,6 +22,13 @@ from urllib import splittype |
| + from urllib import splituser |
| + from urllib import splitpasswd |
| + |
| ++# W0612: Unused variable |
| ++# W0212: Access to a protected member of a client class |
| ++# W0622: Redefining built-in 'type' |
| ++# W0232: Class has no __init__ method |
| ++# pylint: disable=W0612,W0212,W0622,W0232 |
| ++ |
|
Sam Clegg
2012/10/22 22:55:30
Maybe better just to add "sdk_tools/third_party" t
binji
2012/10/23 00:14:09
Done.
|
| ++ |