Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1""" 

2@file 

3@brief Some automation helpers to grab mails from students about projects. 

4""" 

5 

6 

7class RegexRepositoryException(Exception): 

8 """ 

9 raised when it is impossible to get information from the repository 

10 """ 

11 pass 

12 

13 

14class TooManyProjectsException(Exception): 

15 """ 

16 raised when a group has too many projects 

17 """ 

18 pass