| OLD | NEW |
| 1 [MASTER] | 1 [MASTER] |
| 2 | 2 |
| 3 # Specify a configuration file. | 3 # Specify a configuration file. |
| 4 #rcfile= | 4 #rcfile= |
| 5 | 5 |
| 6 # Python code to execute, usually for sys.path manipulation such as | 6 # Python code to execute, usually for sys.path manipulation such as |
| 7 # pygtk.require(). | 7 # pygtk.require(). |
| 8 #init-hook= | 8 #init-hook= |
| 9 | 9 |
| 10 # Profiled execution. | 10 # Profiled execution. |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 | 109 |
| 110 | 110 |
| 111 [TYPECHECK] | 111 [TYPECHECK] |
| 112 | 112 |
| 113 # Tells whether missing members accessed in mixin class should be ignored. A | 113 # Tells whether missing members accessed in mixin class should be ignored. A |
| 114 # mixin class is detected if its name ends with "mixin" (case insensitive). | 114 # mixin class is detected if its name ends with "mixin" (case insensitive). |
| 115 ignore-mixin-members=yes | 115 ignore-mixin-members=yes |
| 116 | 116 |
| 117 # List of classes names for which member attributes should not be checked | 117 # List of classes names for which member attributes should not be checked |
| 118 # (useful for classes with attributes dynamically set). | 118 # (useful for classes with attributes dynamically set). |
| 119 ignored-classes=SQLObject,twisted.internet.reactor,hashlib | 119 ignored-classes=SQLObject,twisted.internet.reactor,hashlib,google.appengine.api.
memcache |
| 120 | 120 |
| 121 # When zope mode is activated, add a predefined set of Zope acquired attributes | 121 # When zope mode is activated, add a predefined set of Zope acquired attributes |
| 122 # to generated-members. | 122 # to generated-members. |
| 123 zope=no | 123 zope=no |
| 124 | 124 |
| 125 # List of members which are set dynamically and missed by pylint inference | 125 # List of members which are set dynamically and missed by pylint inference |
| 126 # system, and so shouldn't trigger E0201 when accessed. Python regular | 126 # system, and so shouldn't trigger E0201 when accessed. Python regular |
| 127 # expressions are accepted. | 127 # expressions are accepted. |
| 128 generated-members=REQUEST,acl_users,aq_parent | 128 generated-members=REQUEST,acl_users,aq_parent |
| 129 | 129 |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 # Create a graph of internal dependencies in the given file (report RP0402 must | 270 # Create a graph of internal dependencies in the given file (report RP0402 must |
| 271 # not be disabled) | 271 # not be disabled) |
| 272 int-import-graph= | 272 int-import-graph= |
| 273 | 273 |
| 274 | 274 |
| 275 [EXCEPTIONS] | 275 [EXCEPTIONS] |
| 276 | 276 |
| 277 # Exceptions that will emit a warning when being caught. Defaults to | 277 # Exceptions that will emit a warning when being caught. Defaults to |
| 278 # "Exception" | 278 # "Exception" |
| 279 overgeneral-exceptions=Exception | 279 overgeneral-exceptions=Exception |
| OLD | NEW |