vote up 12 vote down star
14

Today I was bitten again by "Mutable default arguments" after many years. I usually don't use mutable default arguments unless needed but I think with time I forgot about that, and today in the application I added tocElements=[] in a pdf generation function's argument list and now 'Table of Content' gets longer and longer after each invocation of "generate pdf" :)

My question is what other things should I add to my list of things to avoid?

First is "Mutable default arguments"

Second is "import modules always same way" e.g.

from y import x

and

import x

are totally different things actualylly they are treated as differnt modules see http://stackoverflow.com/questions/1459236/module-reimported-if-imported-from-different-path

flag
I was more interested in thing which MUST be avoided, looks like there is only one candidate – Anurag Uniyal Jun 18 at 11:08
I recommend using pylint, it catches a lot of these gotchas. I use it integrated with eclipse(pydev). – monkut Jun 22 at 4:07
Do you think you forgot, or did you forget if you forgot? – jrockway Jun 22 at 4:39
stackoverflow.com/questions/530530/… - isn't this question the original one? – zeroDivisible Jul 16 at 5:22
yes actually it is now, when I started it i wanted to know the answer to a very specific question, things which are MUST avoid and I found only one till now ("mutable default arguments") – Anurag Uniyal Jul 16 at 5:42
show 2 more comments

29 Answers

vote up 18 vote down

Python Language Gotchas -- things that fail in very obscure ways

  • Using mutable default arguments.

  • Leading zeroes mean octal. 09 is a very obscure syntax error in Python 2.x

  • Misspelling overridden method names in a superclass or subclass. The superclass misspelling mistake is worse, because none of the subclasses override it correctly.

Python Design Gotchas

  • Spending time on introspection (e.g. trying to automatically determine types or superclass identity or other stuff). First, it's obvious from reading the source. More importantly, time spent on weird Python introspection usually indicates a fundamental failure to grasp polymorphism. 80% of the Python introspection questions on SO are failure to get Polymorphism.

  • Spending time on code golf. Just because your mental model of your application is four keywords ("do", "what", "I", "mean"), doesn't mean you should build a hyper-complex introspective decorator-driven framework to do that. Python allows you to take DRY to a level that is silliness. The rest of the Python introspection questions on SO attempts to reduce complex problems to code golf exercises.

  • Monkeypatching.

  • Failure to actually read through the standard library, and reinventing the wheel.

  • Conflating interactive type-as-you go Python with a proper program. While you're typing interactively, you may lose track of a variable and have to use globals(). Also, while you're typing, almost everything is global. In proper programs, you'll never "lose track of" a variable, and nothing will be global.

link|flag
What other alternatives are there for MonkeyPatching when 3rd part lib has some bug? – Anurag Uniyal Jun 18 at 11:06
5  
It's python: you have the source. If 3rd party lib has a bug, you can just fix it. – S.Lott Jun 18 at 12:19
Python 3.0 fixes the leading-zeros-octal bug. Leading zeros on a numeral no longer make it octal. You may still use octal literals however with a 0o (zero small-oh) prefix. – Chris Connett Jun 22 at 21:12
I wouldn't say leading zero is a bug - it's a feature. It's just a little surprising for those who have never seen a PDP11. – mgb Jun 22 at 21:27
Does Python run on a PDP11? I used to program a VAX, which is like a super duper PDP11. Even then, I hated octal. – Nosredna Jun 22 at 21:32
show 4 more comments
vote up 18 vote down

Using index to loop over a sequence

Don't :

for i in range(10) :
    print tab[i]

Do :

for elem in tab :
    print elem

For will automate most iteration operation for you.

Use "==" to check against True or False

Don't :

if (var == True) :
    # do something

if (var != True) :
    # do something

if (var == False) :
    # do something

if (var == None) :
    # do something

Do :

if var :
    # do something

if not var :
    # do something

if var is None :
     # do something

Any object has a boolean value. For built-in types : False, {}, [], "" and 0 are considered False. The rest is True. "Is" let you check for identity, and since None is a Singleton, you should use it.

Do not check if you can, do it and handle the error

Pythonistas usually say "It's easier to ask for forgiveness than permission".

Don't :

if os.path.isfile(file_path) :
    file = open(file_path)
else :
    # do something

Do :

try :
    file =  open(file_path)
except :
    # do something

Or even better with python 3 :

with open(file_path) as file :

Do not check against type

Python is dynamically typed, therefore checking for type makes you lose flexibility. Instead, use duck typing by checking behavior. E.G, you expect a string in a function, then use str() to convert any object in a string. You expect a list, use list() to convert any iterable in a list.

Don't :

def foo(name) :
    if isinstance(name, str) :
        print name.lower()

def bar(listing) :
    if isinstance(listing, list) :
        listing.append("test")

Do :

def foo(name) :
    print str(name).lower()

def bar(listing) :
    list(listing).append("test")

Using the last way, foo will accept any object. Bar will accept strings, tuples, sets, lists and much more. Cheap DRY :-)

Don't mix spaces and tabs

Just don't. You would cry.

Use object as first parent

This is tricky, but it will bite you as your program grows. There are old and new classes in Python. The old ones are, well, old. They lack some features, and can have awkward behavior with inheritance. To be usable, any of your class must be of the "new style". To do so, make it inherit from "object" :

Don't :

class Father :
    pass

class Child(Father) :
    pass

Do :

class Father(object) :
    pass


class Child(Father) :
    pass
link|flag
vote up 16 vote down

Mutating a default argument:

def foo(bar=[]):
    bar.append('baz')
    return bar

The default value is evaluated only once, and not every time the function is called. Repeated calls to foo() would return ['baz'], ['baz', 'baz'], ['baz', 'baz', 'baz'], ...

If you want to mutate bar do something like this:

def foo(bar=None):
    if bar is None:
        bar = []

    bar.append('baz')
    return bar

Or, if you like arguments to be final:

def foo(bar=[]):
    not_bar = bar[:]

    not_bar.append('baz')
    return not_bar
link|flag
Also, mutating a class attribute. Same reason, similar effects. – Lennart Regebro Aug 24 at 9:05
I like this solution: not_bar = bar[:] – kaizer.se Aug 24 at 12:14
+1 I got burned by this: stackoverflow.com/questions/959113/… – gotgenes Aug 24 at 20:36
2  
Hu ? This is IN THE QUESTION. – e-satis Nov 24 at 23:58
vote up 12 vote down

When you need a population of arrays you might be tempted to type something like this:

>>> a=[[1,2,3,4,5]]*4

And sure enough it will give you what you expect when you look at it

>>> from pprint import pprint
>>> pprint(a)

[[1, 2, 3, 4, 5],
 [1, 2, 3, 4, 5],
 [1, 2, 3, 4, 5],
 [1, 2, 3, 4, 5]]

But don't expect the elements of your population to be seperate objects:

>>> a[0][0] = 2
>>> pprint(a)

[[2, 2, 3, 4, 5],
 [2, 2, 3, 4, 5],
 [2, 2, 3, 4, 5],
 [2, 2, 3, 4, 5]]

Unless this is what you need...

It is worth mentioning a workaround:

a = [[1,2,3,4,5] for _ in range(4)]
link|flag
11  
It is worth mentioning a workaround: a = [[1,2,3,4,5] for _ in range(4)] – J.F. Sebastian Jun 22 at 6:12
1  
I would not use _ in the expression. First it has a special meaning to the interactive interpreter. Second, it's not totally obvious that what you mean is that you are ignoring the loop variable. how about changing it to ignored or some such? – TokenMacGuy Jul 27 at 17:30
vote up 11 vote down

I don´t know whether this is a common mistake, but while python doesn´t has increment and decrement operators, double signs are allowed, so

++i

and

--i

is syntactically correct code, but doesn´t do anything.

link|flag
2  
Should probably note that python increment/decrement is done with i += 1, i -= 1. (Inplace of ++i, ==i or i++, i--). – monkut Aug 24 at 8:16
Wow, never new that. How can this be syntactically correct? I'm confused. – Otto Allmendinger Aug 24 at 9:47
1  
The relevant production rule of the python grammar is u_expr ::= power | "-" u_expr | "+" u_expr | "~" u_expr (See docs.python.org/reference/…) – Jochen Walter Aug 24 at 11:07
vote up 9 vote down

The another one could be to avoid using keywords as your own identifiers. Also it's always good to not use from somemodule import *

BTW, wouldn't it be better to post it to community wiki?

link|flag
added to community wiki, i thought community wiki was abt stackoverflow itself? – Anurag Uniyal Jun 18 at 8:29
stackoverflow.com/questions/128434/… – alex vasi Jun 18 at 8:42
specifically I would avoid using from ... import * in modules. In top level scripts I think it's just fine. – TokenMacGuy Jul 27 at 17:29
vote up 8 vote down

Rolling your own code before looking in the standard library. For example, writing this:

def repeat_list(items):
    while True:
        for item in items:
            yield item

When you could just use this:

from itertools import cycle

Examples of frequently overlooked modules (besides itertools) include:

  • optparse for creating command line parsers
  • ConfigParser for reading configuration files in a standard manner
  • tempfile for creating and managing temporary files
  • shelve for storing Python objects to disk, handy when a full fledged database is overkill
link|flag
vote up 7 vote down

Not using functional tools. This isn't just a mistake from a style standpoint, it's a mistake from a speed standpoint because a lot of the functional tools are optimized in C.

This is the most common example:

temporary = []
for item in itemlist:
    temporary.append(somefunction(item))
itemlist = temporary

The correct way to do it:

itemlist = map(somefunction, itemlist)

The just as correct way to do it:

itemlist = [somefunction(x) for x in itemlist]

And if you only need the processed items available one at a time, rather than all at once, you can save memory and improve speed by using the iterable equivalents

# itertools-based iterator
itemiter = itertools.imap(somefunction, itemlist)
# generator expression-based iterator
itemiter = (somefunction(x) for x in itemlist)
link|flag
vote up 6 vote down

Surprised that nobody said this

Mix tab and spaces when indenting.

really, it's a killer. believe me. In particular if it runs.

link|flag
Somebody did, actually. – e-satis Nov 25 at 0:06
vote up 6 vote down

Importing re and using the full regular expression approach to string matching/transformation, when perfectly good string methods exist for every common operation (e.g. capitalisation, simple matching/searching).

link|flag
And capitalisation, isalpha etc etc are all handled better by unicode methods than any regexp you can ever aticipate write, given how many different letters and symbols there are in unicode. – kaizer.se Aug 24 at 11:22
vote up 5 vote down

Normal copying (assigning) is done by reference, so filling a container by adapting the same object and inserting, ends up with a container with references to the last added object. Use copy.deepcopy instead.

link|flag
vote up 5 vote down

If you're coming from C++, realize that variables declared in a class definition are static. You can initialize nonstatic members in the init method.

Example:

class MyClass:
  static_member = 1

  def __init__(self):
    self.non_static_member = random()
link|flag
vote up 4 vote down

Code Like a Pythonista: Idiomatic Python

link|flag
hmm that is more about what to do , not what NOT to do – Anurag Uniyal Jun 18 at 9:14
vote up 3 vote down

Last link is the original one, this SO question is an duplicate.

link|flag
another alternative to str.join is str.format which can be very helpful down the road when you need to localize your strings. – TokenMacGuy Jul 27 at 17:31
vote up 3 vote down

The very first mistake before you even start: Don't be afraid of whitespace.

When you show someone a piece of Python code, they are impressed until you tell them that they have to indent correctly. For some reason, most people feel that a language shouldn't force a certain style on them while all of them will indent the code nonetheless.

link|flag
vote up 2 vote down

I would stop using deprecated methods in 2.6 so your app/script will be ready and easier to convert to python 3.

link|flag
vote up 2 vote down

some personal opinions, but I find it best NOT to:

  • as said, use deprecated modules (use warnings for them)
  • overuse classes & inheritance (typical of static languages legacy maybe)
  • explicitly use declarative algorithms (as iteration with for vs use of itertools)
  • reimplement functions from the standard lib "because I don't need all of those features"
  • using features for the sake of it (reducing compatibility with older python versions)
  • using metaclasses when you really don't have to and more generally make things too "magic"
  • avoid using generators (i.e., use them)
  • (more personal) try to micro-optimize CPython code on a low-level basis. Better spend time on algorithms and then optimize by making a small C shared lib called by ctypes (it's so easy to gain 5x perf boosts on an inner loop)
  • use unnecessary lists when iterators would suffice
  • (controversial maybe now) code a project directly for 3.x before the libs you need are all available.

(edited : best to --> NOT to of course, duh.)

link|flag
1  
are you sure that it's "best to" and not "best not to"? – SilentGhost Jun 18 at 17:25
vote up 2 vote down

A bad habit I had to train myself out of was using X and Y or Z for inline logic.

Unless you can 100% always guarantee that Y will be a true value, even when your code changes in 18 months time, you set yourself up for some unexpected behaviour.

Thankfully, in later versions you can use Y if X else Z.

link|flag
the work around for older python versions without the conditional operator is (X and [y] or [z])[0] – TokenMacGuy Jul 27 at 17:36
Prefixing with not not is an ugly trick to make sure it's boolean. ;) – Lennart Regebro Aug 24 at 8:46
vote up 2 vote down

Somewhat related to the default mutable argument, how one checks for the "missing" case results in differences when an empty list is passed:

def func1(toc=None):
    if not toc:
        toc = []
    toc.append('bar')

def func2(toc=None):
    if toc is None:
        toc = []
    toc.append('bar')

def demo(toc, func):
    print func.__name__
    print '  before:', toc
    func(toc)
    print '  after:', toc

demo([], func1)
demo([], func2)

Here's the output:

func1
  before: []
  after: []
func2
  before: []
  after: ['bar']
link|flag
A clearer way to say this is to say "When checking for None, use is None instead of not", as it's not only for missing cases, but any None testing. – Lennart Regebro Aug 24 at 8:45
vote up 2 vote down
import this

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

import not_this

Write ugly code.
Write implicit code.
Write complex code.
Write nested code.
Write dense code.
Write unreadable code.
Write special cases.
Strive for purity.
Ignore errors and exceptions.
Write optimal code before releasing.
Every implementation needs a flowchart.
Don't use namespaces.

link|flag
5  
For a second I thought there was another easter egg in the stdlib that I hadn't known about; but then I tried import not_this and got an ImportError – Marius Gedminas Jul 27 at 18:45
vote up 2 vote down

Similar to mutable default arguments is the mutable class attribute.

>>> class Classy:
...    foo = []
...    def add(self, value):
...        self.foo.append(value)
... 
>>> instance1 = Classy()
>>> instance2 = Classy()
>>> instance1.add("Foo!")
>>> instance2.foo
['Foo!']
link|flag
vote up 1 vote down

++n and --n may not work as expected by people coming from C/Java background

++n is positive of a positive number which is positive = n

--n is negative of a negative number which is positive = n

link|flag
vote up 1 vote down

Common pitfall: Default arguments are evaluated once:

def x(a, l=[]):
    l.append(a)
    return l

print x(1)
print x(2)

prints:

[1]
[1, 2]

i.e. you always get the same list.

link|flag
This seems very similar to the answer that starts "Mutating a default argument:" stackoverflow.com/questions/1321013/… – Jitse Niesen Aug 24 at 9:52
It's the same. – Lennart Regebro Aug 24 at 11:07
It's the same; I posted first but his answer is more elaborate. – Aaron Digulla Aug 24 at 12:03
vote up 1 vote down

I've started learning Python as well and one of the bigest mistakes I made is constantly using C++/C# indexed "for" loop. Python have for(i ; i < length ; i++) type loop and for a good reason - most of the time there are better ways to do there same thing.

Example: I had a method that iterated over a list and returned the indexes of selected items:

for i in range(len(myList)):
    if myList[i].selected:
        retVal.append(i)

Instead Python has list comprehension that solves the same problem in a more elegant and easy to read way:

retVal = [index for index, item in enumerate(myList) if item.selected]
link|flag
vote up 1 vote down

Never assume that having a multi-threaded Python application and a SMP capable machine (for instance one equipped with a multi-core CPU) will give you the benefit of introducing true parallelism into your application. Most likely it will not because of GIL (Global Interpreter Lock) which synchronizes your application on the byte-code interpreter level.

There are some workarounds like taking advantage of SMP by putting the concurrent code in C API calls or using multiple processes (instead of threads) via wrappers (for instance like the one available at http://www.parallelpython.org) but if one needs true multi-threading in Python one should look at things like Jython, IronPython etc. (GIL is a feature of the CPython interpreter so other implementations are not affected).

According to Python 3000 FAQ (available at Artima) the above still stands even for the latest Python versions.

link|flag
2  
CPython has "True multithreading". What it doesn't have, thanks to the GIL, are threats that can be used for load balancing. But then again, threads where never intended for that. Threads were designed so that you could have locking calls without creating separate processes. However, with Unix and Javas heavy threads, load balancing with threads have become possible, and many people seem to think that this is how you "should" do it. – Lennart Regebro Aug 24 at 11:13
OK, let me rephrase 'True multithreading' as 'SMP capable multi-threading'. – Adam Marek Aug 24 at 11:20
vote up 0 vote down

Similar to mutable default arguments is the mutable class attribute.

>>> class Classy:
...    foo = []
...    def add(self, value):
...        self.foo.append(value)
... 
>>> instance1 = Classy()
>>> instance2 = Classy()
>>> instance1.add("Foo!")
>>> instance2.foo
['Foo!']

Not what you expect.

link|flag
I'd say exactly what you expect. – SilentGhost Aug 24 at 8:52
Yeah, once you understand what's going on, yes. As a Python newbie, no... – Lennart Regebro Aug 24 at 9:06
vote up 0 vote down

This has been mentioned already, but I'd like to elaborate a bit on class attribute mutability.

When you define a member attribute, then every time you instance that class it gets an attribute that's a shallow copy of the class attribute.

So if you have something like

class Test(object):
   myAttr = 1
instA = Test()
instB = Test()
instB.myAttr = 2

It will behave as expected.

>>> instA.myAttr
  1
>>> instB.myAttr
  2

The problem comes when you have class attributes that are mutable. Since instantiation just did a shallow copy, all instances are going to just have a reference pointing to the same object.

class Test(object):
   myAttr=[1,2,3]
instA = Test()
instB = Test()
instB.myAttr[0]=2
>>> instA.myAttr
   [2,2,3]

But the references are actual members of the instance, so as long as you are actually assigning something new to the attribute you are ok.

You can get around this by making a deep copy of mutable variables during the init function

import copy
class Test(object):
   myAttr = [1,2,3]
   def __init__(self):
      self.myAttr = copy.deepcopy(self.myAttr)
instA = Test()
instB = Test()
instB.myAttr[0] = 5
>>> instA.myAttr
   [1,2,3]
>>> instB.myAttr
   [5,2,3]

It might be possible to write a decorator that would automatically deepcopy all your class attributes during init, but I don't know offhand of one that is provided anywhere.

link|flag
vote up 0 vote down
my_variable = [something]
...
my_varaible = f(my_variable)
...
use my_variable and thinking it contains the result from f, and not the initial value

Python won't warn you in any way that on the second assignment you misspelled the variable name and created a new one.

link|flag
vote up 0 vote down

Algorithm blogs has a good post about Python performance issues and how to avoid them: 10 Python Optimization Tips and Issues

link|flag

Your Answer

Get an OpenID
or

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