Conditions | 2 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | class Factory: |
||
21 | def get_class(self, object_name): |
||
22 | if object_name not in self._class_registry: |
||
23 | # Construction d'une classe etendue a partir des sous classes existantes |
||
24 | # print self._extend_registry[object_name] |
||
25 | self._class_registry[object_name] = type('Final' + object_name, |
||
26 | tuple(self._extend_registry[object_name]), {}) |
||
27 | return self._class_registry[object_name] |
||
28 | |||
36 | return getattr(self.instance, name) |
This check looks for invalid names for a range of different identifiers.
You can set regular expressions to which the identifiers must conform if the defaults do not match your requirements.
If your project includes a Pylint configuration file, the settings contained in that file take precedence.
To find out more about Pylint, please refer to their site.