Beautiful Soup findAll não encontra todas

Eu estou tentando analisar um site e obter algumas informações com BeautifulSoup.findAll, mas não encontrá-los todos .. Eu estou usando python3

o código é esse

#!/usr/bin/python3

from bs4 import BeautifulSoup
from urllib.request import urlopen

page = urlopen ("http://mangafox.me/directory/")
# print (page.read ())
soup = BeautifulSoup (page.read ())

manga_img = soup.findAll ('a', {'class' : 'manga_img'}, limit=None)

for manga in manga_img:
    print (manga['href'])

só imprime a metade deles ...

questionAnswers(1)

yourAnswerToTheQuestion