# before1
from __future__ import with_statement # on-line1
# before2
from __future__ import division as foovision # on-line2
# after3
from __future__ import with_statement as foostatement, generators as barstatement
# before3
from cmath import * # on-line4
import os, codecs
# comment after4
import os, codecs
# before5
import httplib as httpfoo, array as arraybar # on-line5
# after6
import samplepackage.fibo # on-line6
# after7
samplepackage.fib(100)


