The Bool class is accessible via the formencode.validators module.
If you want to convert strings like 'true' to booleans, then use StringBoolean.
Examples:
>>> Bool.to_python(0)
False
>>> Bool.to_python(1)
True
>>> Bool.to_python('')
False
>>> Bool.to_python(None)
False
Messages
See the source for more information.