1
2
def import_convention(scope):
3
    code =\
4
"""
5
import sys, os, matplotlib, mpmath, numpy
6
sys.path += ["lib","/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages"]
7
matplotlib.use("Agg")
8
import pylab
9
import scipy
10
from pprint import pprint
11
"""
12
    exec code in scope
13
    pass