Permalink
Please sign in to comment.
Showing
with
507 additions
and 201 deletions.
- +10 −10 doc/source/api.rst
- +1 −1 doc/source/guidelines.rst
- +11 −11 doc/source/usage.rst
- +19 −4 oslo/i18n/__init__.py
- +1 −53 oslo/i18n/fixture.py
- +1 −85 oslo/i18n/log.py
- +16 −0 oslo_i18n/__init__.py
- +4 −4 {oslo/i18n → oslo_i18n}/_factory.py
- +2 −2 {oslo/i18n → oslo_i18n}/_gettextutils.py
- +2 −2 {oslo/i18n → oslo_i18n}/_i18n.py
- 0 {oslo/i18n → oslo_i18n}/_lazy.py
- 0 {oslo/i18n → oslo_i18n}/_locale.py
- +4 −4 {oslo/i18n → oslo_i18n}/_message.py
- +1 −1 {oslo/i18n → oslo_i18n}/_translate.py
- +65 −0 oslo_i18n/fixture.py
- +97 −0 oslo_i18n/log.py
- 0 oslo_i18n/tests/__init__.py
- 0 { → oslo_i18n}/tests/fakes.py
- +3 −3 { → oslo_i18n}/tests/test_factory.py
- +38 −0 oslo_i18n/tests/test_fixture.py
- +5 −5 { → oslo_i18n}/tests/test_gettextutils.py
- +106 −0 oslo_i18n/tests/test_handler.py
- +1 −1 { → oslo_i18n}/tests/test_lazy.py
- +1 −1 { → oslo_i18n}/tests/test_locale_dir_variable.py
- +1 −1 { → oslo_i18n}/tests/test_logging.py
- +3 −3 { → oslo_i18n}/tests/test_message.py
- +44 −0 oslo_i18n/tests/test_public_api.py
- +4 −4 { → oslo_i18n}/tests/test_translate.py
- 0 { → oslo_i18n}/tests/utils.py
- +1 −1 setup.cfg
- +1 −1 tests/test_fixture.py
- +2 −2 tests/test_handler.py
- +1 −1 tests/test_public_api.py
- +61 −0 tests/test_warning.py
- +1 −1 tox.ini
| @@ -0,0 +1,16 @@ | ||
| +# Licensed under the Apache License, Version 2.0 (the "License"); you may | ||
| +# not use this file except in compliance with the License. You may obtain | ||
| +# a copy of the License at | ||
| +# | ||
| +# http://www.apache.org/licenses/LICENSE-2.0 | ||
| +# | ||
| +# Unless required by applicable law or agreed to in writing, software | ||
| +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
| +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
| +# License for the specific language governing permissions and limitations | ||
| +# under the License. | ||
| + | ||
| +from ._factory import * | ||
| +from ._gettextutils import * | ||
| +from ._lazy import * | ||
| +from ._translate import * |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.
0 comments on commit
1215edc