"""Simple test file for HappyDoc.
This module contains a variety of import statements for unit testing.
"""
import CommandLineApp
from CommandLineApp import TestApp,SubClassTestApp
import Module1
from Module2 import Symbol1
import Package1.SubModule1
from Package2.SubModule2 import Symbol2
from Package3.SubModule3 import Symbol3
from a.b import c,d
import one.two
import os, types
import string
from string import strip
from sys import path
from token import *
from prettyast import astListFixNames
#
# Bug 478659 - Import statements with trailing comments seem to be ignored.
#
# this module will be listed
import webbrowser
import cgi # this module will not be listed
|