Commit ee96e0623e7e7976b8287210c0c78297a6641683
- Diff rendering mode:
- inline
- side by side
convention.py
(13 / 0)
|   | |||
| 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 |

