| Total Complexity | 4 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | #!/usr/local/bin/python |
||
|
|
|||
| 2 | # coding: utf-8 |
||
| 3 | |||
| 4 | import abc |
||
| 5 | |||
| 6 | |||
| 7 | class LanguageTemplate: |
||
| 8 | __metaclass__ = abc.ABCMeta |
||
| 9 | |||
| 10 | @property |
||
| 11 | @abc.abstractmethod |
||
| 12 | def unicode_character_lowers(self): |
||
| 13 | pass |
||
| 14 | |||
| 15 | @property |
||
| 16 | @abc.abstractmethod |
||
| 17 | def unicode_character_uppers(self): |
||
| 18 | pass |
||
| 19 | |||
| 20 | @property |
||
| 21 | @abc.abstractmethod |
||
| 22 | def requires_unicode_characters(self): |
||
| 23 | pass |
||
| 24 | |||
| 25 | @property |
||
| 26 | @abc.abstractmethod |
||
| 27 | def forbids_unicode_characters(self): |
||
| 28 | pass |
||
| 29 |
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.