See if adding this print statement gives you any ideas.
# New board function
def new_board():
"""Create new game board."""
board = []
for square in range(NUM_SQUARES):
print "adding square #", square
board.append(EMPTY)
return board