summaryrefslogtreecommitdiff
path: root/sandbox/tibs/pysource2/trivial_package/file1.py
blob: 9636cb6760826264b9f6d4f767d4f36cf8b6951f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /usr/bin/env python
"""This is the first example file. It *does* use reStructuredText.
"""

__docformat__ = "reST"

import os

class Fred:
    """An example class - it announces each instance as it is created.
    """

    def __init__(self):
        print "Aha"