vote up 17 vote down star
9

What python-specific antipatterns do you know?

Could you also give an example, please.

flag
Please turn this into a wiki. – Aaron Digulla Feb 23 at 9:32
I can't understand the question. I can't reconcile language-specific features and Design Patterns. Can you provide some clearer definition of what you're looking for? Some example or reference or something? – S.Lott Feb 23 at 11:00
Good question but I agree this should be wiki – umnik700 Feb 23 at 14:08

13 Answers

vote up 21 vote down check
  • Using preconditional checking (exception handling in Python is cheap)

YES:

def safe_divide_2(x, y):
    try:
        return x/y
    except ZeroDivisionError:  
        print "Divide-by-0 attempt detected"
        return None

NO:

def safe_divide_1(x, y):
    if y==0:
        print "Divide-by-0 attempt detected"
        return None
    else:
        return x/y
  • Not using list comprehensions (they are much cleaner and are faster)

YES:

def double_list(items):
    return [item * 2 for item in items]

NO:

def double_list(items):
    doubled_items=[]
    for item in items:
        doubled_items.append(item*2)
    return doubled_items
  • Returning lists instead of using generators (less memory usage and cleaner)

YES:

def gen():
    for i in range(10):
        yield i

for number in gen():
    print i #prints 0-9

NO:

#list comprehension would be used here, but I did a for loop for clarity
def gen():
    numlist=[]
    for i in range(10):
        numlist.append(i)
    return numlist

for number in gen():
    print i #prints 0-9
link|flag
For the first example you mention, sometimes it is helpful to arg checking early in a function, so it'll fail immediately, and then fail with: raise ValueError, "y cannot be 0" to actually describe why the function went kerblooey. – Gregg Lind Feb 26 at 19:51
vote up 3 vote down

Using positional arguments to fill keyword parameters.

e.g. given:

def foo(x, a=1, b=2):
    # etc

calling it as:

foo(14, 21)

This always bugs me, though maybe it's because I have a short memory and without the clue of the keyword (a=21) I forget what the argument means.

This is particularly prevalent in wxPython code.

link|flag
I catch myself doing this all the time. It's a tough habit to break, though, b/c you don't immediately feel the effects of changing foo(). – Jeremy Michael Cantrell Mar 23 at 21:05
I do this myself, it seems some frameworks even encourage this behavior in the docs... but I see your point, had never really thought about it since I was never altering the framework. – TM Nov 18 at 20:38
vote up 4 vote down

The Decorate-Sort-Undecorate idiom in later versions of Python where you can just use the key parameter.

deco = [(key(item), i, item) for i, item in enumerate(items)]
deco.sort()
final = [item for _, _, item in deco]

versus:

final = sorted(items, key=key)
link|flag
vote up 3 vote down

A inexhaustible source of anti-patterns: see the Zope source code and all their contributions to the cheeseshop.

link|flag
vote up 7 vote down

Using Java-style getters and setters for every field:

def get_field(self): 
   return self.field
def set_field(self, val): 
   self.field = val

It's usually better just to access the field directly, and for more advanced usage you can smoothly transition to using property().

link|flag
1  
Those kinds of getters/setters are useless in ANY language. You're just adding bloat to what is basically a public property. – ryeguy Feb 24 at 19:05
3  
@ryeguy: I disagree: in Java they leave your options open to change the implementation of the getter/setter without breaking all the code that uses it (as would happen if you changed a field that other classes were directly using). – Kiv Feb 24 at 19:28
@Kiv which wouldn't be needed if Java had proper "properties", like in C# and Objective-C. – foljs Apr 26 at 13:05
vote up 3 vote down

Not using python functions ;)

value = 0
for car in cars:
    value += car.value
return value

# instead, do
return sum(car.value for car in cars)
link|flag
you don't need list comprehension in the last line, generator will do just fine – SilentGhost Feb 23 at 18:51
i.e. return sum(car.value for car in cars) – hughdbrown Feb 23 at 18:53
oh, whoops, thanks a ton! – webjunkie Feb 23 at 18:56
vote up 4 vote down
for i in xrange(len(something)):
    workwith = something[i]
    # do things with workwith...

From vartec's answer, but I think it's good (bad?) enough to deserve its own answer.

link|flag
vote up 3 vote down

It's mentioned as part of nikow's answer but I thought it deserved a post of its own.

  • Mixing tabs and spaces for indentation.
link|flag
Do people actually see this in the wild? At my shop, I've looked at a lot of python code, and never once seen it. – Gregg Lind Feb 26 at 19:49
Yeah, we do see it. – foljs Apr 26 at 13:07
vote up 10 vote down

Inappropriate use of isinstance.

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.

link|flag
+1: Bad Polymorphism. See stackoverflow.com/questions/423823/… – S.Lott Feb 23 at 16:49
I agree, but will occasionally use isinstance because hasattr(x, "y") and hasattr(x, "z") and hasattr(x, "i_hate_my_life") is a pain to type and hard to read. python could use a isducktype(x, y). – TokenMacGuy Feb 23 at 19:17
How ducky does it have to be for "isducktype" to return true? maybe make a function: def hasattrs(x,*args): return all((hasattr(x,a) for a in args)) – Gregg Lind Feb 26 at 19:46
Nice. Reminds me of how templates in C++ are (if you squint) duck typed at compile time. I.e., just use the methods/attributes you need, rather than requiring that a formal inheritance requirement be satisfied. – zweiterlinde Feb 26 at 20:08
vote up 17 vote down

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:

class Util():
  @staticmethod
  def foo():
    ...

# this should be just a function;
# it can be placed in 'util' module
def foo():
  ...

Another case:

class Pair():
  def __init__(self, first, second):
    ...

pairs = [Pair(1, 2), Pair(3, 4)]

# usually built-in tuple is enough
pairs = [(1, 2), (3, 4)]
link|flag
agreed, I've always despised the whole class-as-namespace way of doing things. – Doug T. Feb 23 at 14:02
1  
In py2.6+ you could write: Pair = collections.namedtuple('Pair', 'first second') :-) Should be just as fast as a regular tuple, but gives you attribute access too. – John Fouhy Feb 23 at 21:28
vote up 8 vote down

Excessive (ab)use of the reduce function.

link|flag
+1, guilty of abusing lambda/filter/reduce myself. – Constantin Feb 23 at 13:59
What's the Pythonic way? Write out a loop by hand? – Ken Feb 23 at 17:16
1  
Yes. Reduce will often lead to horrible performance problems because of the way the function is applied through the list. Writing your own using itertools is MUCH faster. – S.Lott Feb 23 at 17:30
Wow, that's too bad. Reduce and reduce-like operators are fantastic tools in other languages. – Robert P Feb 23 at 17:53
@Robert P: be sure (really sure) what reduce does before you apply a poorly-thought out function. You'll often find that a function that includes it's own loop has created an *O**(_n ^ 2) (or worse) reduce operation. – S.Lott Feb 23 at 18:05
show 2 more comments
vote up 5 vote down
  • using list where it's possible to use generators;
  • using for with range to access via index, instead of directly iterating object;
  • excessive [ab]use of lambda functions;
link|flag
Lambdas are bad? Just really bad performance or what? – Robert P Feb 23 at 17:55
excessive use of lambdas makes code unreadable. – vartec Feb 23 at 20:18
the "operator" module makes a lot of lambda's unnecessary. – Gregg Lind Feb 26 at 19:47
vote up 22 vote down
  • Mutable default arguments in functions or methods, like

    def test(elem, start_list=[]):
        start_list.append(elem)
        return start_list
    
    
    print test(1)
    print test(2)
    

    creates the output

    [1]
    [1, 2]
    

    which is generally not what you want.

  • Mixing tabs and spaces.

link|flag
actually I find it quiet useful for cache. – vartec Feb 23 at 11:06
If you want to cache then better use a function decorator. Did I really get I downvote for that? – nikow Feb 23 at 11:09
Yes, but it's a great irritation for first time users :) – Aaron Digulla Feb 23 at 11:10
Well, for the first time users event the fact that copy() behavior is not deepcopy() might be a problem. Especially for those used to languages where a = b is same as a = b.deepcopy() in Python – vartec Feb 23 at 11:15
mixing tabs and spaces is more of an error than anti-pattern (syntax error in py3k, btw) – SilentGhost Feb 23 at 18:19
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.