annotate urwid_satext/__init__.py @ 143:144bdf877d21

python 3 port (using 2to3)
author Goffi <goffi@goffi.org>
date Tue, 13 Aug 2019 08:55:41 +0200
parents 810f92c7de88
children d505d9ee792e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
128
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
1 #!/usr/bin/python
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
2 # -*- coding: utf-8 -*-
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
3
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
4 # Urwid SàT extensions
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
5 # Copyright (C) 2009-2016 Jérôme Poisson (goffi@goffi.org)
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
6 #
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
7 # This program is free software: you can redistribute it and/or modify
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
8 # it under the terms of the GNU Lesser General Public License as published by
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
9 # the Free Software Foundation, either version 3 of the License, or
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
10 # (at your option) any later version.
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
11 #
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
12 # This program is distributed in the hope that it will be useful,
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
15 # GNU Lesser General Public License for more details.
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
16 #
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
17 # You should have received a copy of the GNU Lesser General Public License
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
2a6b8742e44a set __version__ in __init__.py
Goffi <goffi@goffi.org>
parents: 30
diff changeset
19
139
1970df98643d i18n: moved gettext install
Goffi <goffi@goffi.org>
parents: 136
diff changeset
20 import gettext
143
144bdf877d21 python 3 port (using 2to3)
Goffi <goffi@goffi.org>
parents: 140
diff changeset
21 gettext.install('urwid_satext')
139
1970df98643d i18n: moved gettext install
Goffi <goffi@goffi.org>
parents: 136
diff changeset
22
140
810f92c7de88 0.7.0 « La Commune » release
Goffi <goffi@goffi.org>
parents: 139
diff changeset
23
810f92c7de88 0.7.0 « La Commune » release
Goffi <goffi@goffi.org>
parents: 139
diff changeset
24 __version__ = '0.7.0'