What python-specific antipatterns do you know?
Could you also give an example, please.
|
What python-specific antipatterns do you know? Could you also give an example, please. |
||||
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
YES:
NO:
YES:
NO:
YES:
NO:
|
|||||
|
|
|||||||||||||||||
|
|
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:
|
|||||||||||||||||
|
|
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 |
|||||||||||||
|
|
Excessive (ab)use of the reduce function. |
|||||||||||||||||
|
From vartec's answer, but I think it's good (bad?) enough to deserve its own answer. |
|||||
|
|
Not using python functions ;)
|
|||||||
|
|
|||||||||||||
|
|
It's mentioned as part of nikow's answer but I thought it deserved a post of its own.
|
|||||||||
|
|
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 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. |
|||||
|
|
not using enumerate. If you need to loop over a sequence, and access its position/index along with the value itself, you should use enumerate. I've seen weird stuff like this:
when all you need to do is:
|
||||
|
|
Using map() or a list comprehension to perform a repeated operation on a sequence of items, instead of a for loop:
The telltale sign is that these statements create a list that is not assigned to anything. Why not just make your intent clear, that you want to iterate over a sequence and apply an operation to each item:
|
|||||||||
|
|
Am I allowed to add answers for misuse of important standard library tools? You probably already know not to use Unfortunately, it's far to easy to get into just as big a mess using that module. A key insight into using logging effectively is to view it as a producer-consumer interface. Producers, which will be the bulk of any system, the part that 'uses' logging, but mainly does the actual application work, only ever call the Bad:
Good!
|
||||
|
|
|
Using
This has O(n^2) performance. I've heard that CPython can sometimes optimize it to something more sensible, but other Python implementations can't. Use |
||||
|
|