source: main/waeup.sirp/trunk/src/waeup/sirp/students/__init__.py @ 6627

Last change on this file since 6627 was 6621, checked in by Henrik Bettermann, 13 years ago

Remove old student package and replace by new students package which even contains the first browser UIs (fully tested)

  • Property svn:keywords set to Id
File size: 301 bytes
Line 
1"""This package contains everything regarding students.
2"""
3# Make this a package.
4from waeup.sirp.students.students import (
5    Student, StudentFactory
6    )
7from waeup.sirp.students.container import StudentsContainer
8
9
10__all__ = [
11    'Student',
12    'StudentFactory',
13    'StudentsContainer',
14    ]
Note: See TracBrowser for help on using the repository browser.