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

Last change on this file since 6634 was 6632, checked in by Henrik Bettermann, 14 years ago

Rename applicants.py, accesscodes.py and students.py modules. Their names should be singular like in the university package.

  • Property svn:keywords set to Id
File size: 300 bytes
Line 
1"""This package contains everything regarding students.
2"""
3# Make this a package.
4from waeup.sirp.students.student 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.