Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/babel/messages/__init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-06-07 06:39 +0000

1""" 

2 babel.messages 

3 ~~~~~~~~~~~~~~ 

4 

5 Support for ``gettext`` message catalogs. 

6 

7 :copyright: (c) 2013-2023 by the Babel Team. 

8 :license: BSD, see LICENSE for more details. 

9""" 

10 

11from babel.messages.catalog import ( 

12 Catalog, 

13 Message, 

14 TranslationError, 

15) 

16 

17__all__ = [ 

18 "Catalog", 

19 "Message", 

20 "TranslationError", 

21]