~ubuntu-branches/ubuntu/karmic/python-scipy/karmic

« back to all changes in this revision

Viewing changes to Lib/xxx/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T. Chen (new)
  • Date: 2005-03-16 02:15:29 UTC
  • Revision ID: james.westby@ubuntu.com-20050316021529-xrjlowsejs0cijig
Tags: upstream-0.3.2
ImportĀ upstreamĀ versionĀ 0.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# xxx - Example of a Scipy module, see DEVELOPERS.txt 
 
3
#
 
4
 
 
5
# Get documentation string:
 
6
from info_xxx import __doc__
 
7
 
 
8
# Import symbols from sub-module:
 
9
from foo import *
 
10
 
 
11
# Import sub-package:
 
12
import yyy
 
13
 
 
14
# Import extension module
 
15
import spam