~ubuntu-branches/ubuntu/lucid/python-scipy/lucid

« back to all changes in this revision

Viewing changes to Lib/sandbox/pyem/examples.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-01-07 14:12:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070107141212-mm0ebkh5b37hcpzn
* Remove build dependency on python-numpy-dev.
* python-scipy: Depend on python-numpy instead of python-numpy-dev.
* Package builds on other archs than i386. Closes: #402783.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
def ex1():
 
2
    import basic_example1
 
3
 
 
4
def ex2():
 
5
    import basic_example2
 
6
 
 
7
def ex3():
 
8
    import basic_example3
 
9
 
 
10
if __name__ == '__main__':
 
11
    ex1()
 
12
    ex2()
 
13
    ex3()
 
14