Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/iris/common/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
# This file is part of Iris and is released under the LGPL license.
# See COPYING and COPYING.LESSER in the root of the repository for full
# licensing details.
"""
A package for provisioning common Iris infrastructure.

"""

from .lenient import *
from .metadata import *
Expand Down
4 changes: 4 additions & 0 deletions lib/iris/common/lenient.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
# This file is part of Iris and is released under the LGPL license.
# See COPYING and COPYING.LESSER in the root of the repository for full
# licensing details.
"""
Provides the infrastructure to support lenient client/service behaviour.

"""

from collections.abc import Iterable
from contextlib import contextmanager
Expand Down
5 changes: 5 additions & 0 deletions lib/iris/common/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
# This file is part of Iris and is released under the LGPL license.
# See COPYING and COPYING.LESSER in the root of the repository for full
# licensing details.
"""
Provides the infrastructure to support the common metadata API.

"""


from abc import ABCMeta
from collections import namedtuple
Expand Down
6 changes: 4 additions & 2 deletions lib/iris/common/mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@
# This file is part of Iris and is released under the LGPL license.
# See COPYING and COPYING.LESSER in the root of the repository for full
# licensing details.
"""
Provides common metadata mixin behaviour.

"""

from collections.abc import Mapping
from functools import wraps
import re

import cf_units

from iris.common import BaseMetadata
from .metadata import BaseMetadata
import iris.std_names


Expand Down
Loading