Python: Listar Compreensões vs. Mapa

Referindo-se a issoCompreensão de lista de Python vs. Mapa pergunta, alguém pode explicar por que a List Comprehensions oferece melhores resultados do quemap quando a compreensão da lista não chama uma função, mesmo quando não há função lambda nomap mas dá o pior resultado ao chamar uma função?

import timeit

print timeit.Timer('''[i**2 for i in xrange(100)]''').timeit(number = 100000)

print timeit.Timer('''map(lambda i: i**2, xrange(100))''').timeit(number = 100000)

print timeit.Timer(setup="""def my_pow(i):
    return i**2
""",stmt="""map(my_pow, xrange(100))""").timeit(number = 100000)

print timeit.Timer(setup="""def my_pow(i):
    return i**2
""",stmt='''[my_pow(i) for i in xrange(100)]''').timeit(number = 100000)

resultados:

1.03697046805 <-- list comprehension without function call
1.96599485313 <-- map with lambda function
1.92951520483 <-- map with function call
2.23419570042 <-- list comprehension with function call

questionAnswers(1)

yourAnswerToTheQuestion