| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 # (useful for classes with attributes dynamically set). | 118 # (useful for classes with attributes dynamically set). |
| 119 ignored-classes=SQLObject,twisted.internet.reactor,hashlib,google.appengine.api.
memcache | 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,multiprocessing.managers.SyncManag
er |
| 129 | 129 |
| 130 | 130 |
| 131 [MISCELLANEOUS] | 131 [MISCELLANEOUS] |
| 132 | 132 |
| 133 # List of note tags to take in consideration, separated by a comma. | 133 # List of note tags to take in consideration, separated by a comma. |
| 134 notes=FIXME,XXX,TODO | 134 notes=FIXME,XXX,TODO |
| 135 | 135 |
| 136 | 136 |
| 137 [SIMILARITIES] | 137 [SIMILARITIES] |
| 138 | 138 |
| (...skipping 131 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 |