3253N/A#
3253N/A# CDDL HEADER START
3253N/A#
3253N/A# The contents of this file are subject to the terms of the
3253N/A# Common Development and Distribution License (the "License").
3253N/A# You may not use this file except in compliance with the License.
3253N/A#
3253N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
3253N/A# or http://www.opensolaris.org/os/licensing.
3253N/A# See the License for the specific language governing permissions
3253N/A# and limitations under the License.
3253N/A#
3253N/A# When distributing Covered Code, include this CDDL HEADER in each
3253N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
3253N/A# If applicable, add the following below this CDDL HEADER, with the
3253N/A# fields enclosed by brackets "[]" replaced with your own identifying
3253N/A# information: Portions Copyright [yyyy] [name of copyright owner]
3253N/A#
3253N/A# CDDL HEADER END
3253N/A
3253N/A#
3253N/A# Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
3253N/A#
3253N/A
3253N/A# This file is used to control pylint's python3 checker when checking
3253N/A# python source.
3253N/A#
3253N/A
3253N/A[MESSAGES CONTROL]
3253N/A# See the detailed explanations of the messages at:
3253N/A# http://docs.pylint.org/features.html
3253N/A
3253N/A# Disable the message, report, category or checker with the given id(s). You
3253N/A# can either give multiple identifiers separated by comma (,) or put this
3253N/A# option multiple times (only on the command line, not in the configuration
3253N/A# file where it should appear only once).You can also use "--disable=all" to
3253N/A# disable everything first and then reenable specific checks. For example, if
3253N/A# you want to run only the similarities checker, you can use "--disable=all
3253N/A# --enable=similarities". If you want to run only the classes checker, but have
3253N/A# no Warning level messages displayed, use"--disable=all --enable=classes
3253N/A# --disable=W"
3253N/Adisable=all
3253N/A
3253N/A# These messages are not so required for our gate.
3253N/A# W1618 no-absolute-import
3253N/A# W1633 round-builtin
3253N/A# W1636 map-builtin-not-iterating
3253N/A# W1637 zip-builtin-not-iterating
3253N/A# W1638 range-builtin-not-iterating
3253N/A# W1639 filter-builtin-not-iterating
3253N/A
3253N/A# Enable the message, report, category or checker with the given id(s). You can
3253N/A# either give multiple identifier separated by comma (,) or put this option
3253N/A# multiple time. See also the "--disable" option for examples.
3253N/A# E1601 print-statement
3253N/A# E1602 parameter-unpacking
3253N/A# E1603 npacking-in-except
3253N/A# E1604 old-raise-syntax
3253N/A# E1605 backtick
3253N/A# E1606 long-suffix
3253N/A# E1607 old-ne-operator
3253N/A# E1608 old-octal-literal
3253N/A
3253N/A# W1601 apply-builtin
3253N/A# W1602 basestring-builtin
3253N/A# W1603 buffer-builtin
3253N/A# W1604 cmp-builtin
3253N/A# W1605 coerce-builtin
3253N/A# W1606 execfile-builtin
3253N/A# W1607 file-builtin
3253N/A# W1608 long-builtin
3253N/A# W1609 raw_input-builtin
3253N/A# W1610 reduce-builtin
3253N/A# W1611 standarderror-builtin
3253N/A# W1612 unicode-builtin
3253N/A# W1613 xrange-builtin
3253N/A# W1614 coerce-method
3253N/A# W1615 delslice-method
3253N/A# W1616 getslice-method
3253N/A# W1617 setslice-method
3253N/A# W1619 old-division
3253N/A# W1620 dict-iter-method
3253N/A# W1621 dict-view-method
3253N/A# W1622 next-method-called
3253N/A# W1623 metaclass-assignment
3253N/A# W1624 indexing-exception
3253N/A# W1625 raising-string
3253N/A# W1626 reload-builtin
3253N/A# W1627 oct-method
3253N/A# W1628 hex-method
3253N/A# W1629 nonzero-method
3253N/A# W1630 cmp-method
3253N/A# W1632 input-builtin
3253N/A# W1634 intern-builtin
3253N/A# W1635 unichr-builtin
3253N/A# W1640 using-cmp-argument
3253N/A
3253N/Aenable=E1601,E1602,E1603,E1604,E1605,E1606,E1607,E1608,W1601,W1602,W1603,W1604,W1605,W1606,W1607,W1608,W1609,W1610,W1611,W1612,W1613,W1614,W1615,W1616,W1617,W1619,W1620,W1621,W1622,W1623,W1624,W1625,W1626,W1627,W1628,W1629,W1630,W1632,W1634,W1635,W1640
3253N/A
3253N/A# Template used to display messages. This is a python new-style format string
3253N/A# used to format the message information. See doc for all details
3253N/Amsg-template='{msg_id}:{line:3d},{column:2d}: {msg} ({symbol})'