Paketname | python-decorator |
Beschreibung | simplify usage of python decorators by programmers |
Archiv/Repository | Offizielles Debian Archiv squeeze (main) |
Version | 3.2.0-1 |
Sektion | python |
Priorität | optional |
Installierte Größe | 216 Byte |
Hängt ab von | python, python-support (>= 0.90.0) |
Empfohlene Pakete | |
Paketbetreuer | Debian Python Modules Team |
Quelle | |
Paketgröße | 45174 Byte |
Prüfsumme MD5 | 523c0c4faba114925f75de32aceeaf65 |
Prüfsumme SHA1 | a5e77d20fc43126e563bbcb26afb3d190cd47ed5 |
Prüfsumme SHA256 | 3b3cb3810712ec3685703a8e9c74180341c234ea5a4434299cee00ce2400125a |
Link zum Herunterladen | python-decorator_3.2.0-1_all.deb |
Ausführliche Beschreibung | Python 2.4 decorators have significantly changed the way Python programs are
structured.
* decorators help reduce boilerplate code;
* decorators help the separation of concerns;
* decorators enhance readability and maintainability;
* decorators are very explicit.
Still, as of now, writing custom decorators correctly requires some
experience and is not as easy as it could be. For instance, typical
implementations of decorators involve nested functions and we all know that
flat is better than nested.
The aim of the decorator module it to simplify the usage of decorators for
the average programmer and to popularize decorators usage giving examples of
useful decorators, such as memoize, tracing, redirecting_stdout, locked, etc.
|