doc fixes

This commit is contained in:
Sylvain Thénault 2007-08-22 09:45:27 +02:00
parent 61a3c707d1
commit 12c28b6d33
2 changed files with 6 additions and 2 deletions

View File

@ -35,11 +35,11 @@ MSGS = {
'W0701': ('Raising a string exception',
'Used when a string exception is raised.'),
'W0702': ('No exception\'s type specified',
'W0702': ('No exception type(s) specified',
'Used when an except clause doesn\'t specify exceptions type to \
catch.'),
'W0703': ('Catch "Exception"',
'Used when an except catch Exception instances.'),
'Used when an except catches Exception instances.'),
'W0704': ('Except doesn\'t do anything',
'Used when an except clause does nothing but "pass" and there is\
no "else" clause.'),

View File

@ -397,9 +397,13 @@ Advanced usage
Base configuration
------------------
To be written...
Environment
-----------
To be written...
Messages control
----------------