What python-specific antipatterns do you know?
Could you also give an example, please.
|
9
|
What python-specific antipatterns do you know? Could you also give an example, please. |
||||||
|
|
|
YES:
NO:
YES:
NO:
YES:
NO:
|
|||
|
|
|
Using positional arguments to fill keyword parameters. e.g. given:
calling it as:
This always bugs me, though maybe it's because I have a short memory and without the clue of the keyword ( This is particularly prevalent in wxPython code. |
||||
|
|
|
The Decorate-Sort-Undecorate idiom in later versions of Python where you can just use the key parameter.
versus:
|
||
|
|
|
|
A inexhaustible source of anti-patterns: see the Zope source code and all their contributions to the cheeseshop. |
||
|
|
|
|
Using Java-style getters and setters for every field:
It's usually better just to access the field directly, and for more advanced usage you can smoothly transition to using |
||||||||||
|
|
|
Not using python functions ;)
|
||||||
|
|
|
From vartec's answer, but I think it's good (bad?) enough to deserve its own answer. |
|||
|
|
|
|
It's mentioned as part of nikow's answer but I thought it deserved a post of its own.
|
||||
|
|
|
Inappropriate use of People coming from static language backgrounds often completely miss the simplicity and flexibility of Python's dynamic polymorphism (aka duck typing). This answer to another question provides a helpful discussion on Python polymorphism ignorance. |
||||||||
|
|
|
I would say that programming in Python as if it were some other language is an "anti-pattern" i see quite often. For example, for Java/C# refugees it is using classes for everything:
Another case:
|
||||||
|
|
|
Excessive (ab)use of the reduce function. |
||||||||||||
|
|
|
|
||||||
|
|
|
|
||||||||||
|