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

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

2 statements  

1""" 

2 babel.messages 

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

4 

5 Support for ``gettext`` message catalogs. 

6 

7 :copyright: (c) 2013-2024 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]