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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ The changelog format is based on [Keep a Changelog](https://keepachangelog.com/e
* -/-


### Changed
* Python modules: Changed `__ALL__` to `__all__` (lowercase, PEP8 and PEP257 compliant).


## [0.4.4] - 2026-03-26

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/dictIO/cpp_dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from _collections_abc import Iterable, Mapping


__ALL__ = [
__all__ = [
"CppDict",
]

Expand Down
2 changes: 1 addition & 1 deletion src/dictIO/dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
)
from dictIO.utils.path import relative_path

__ALL__ = [
__all__ = [
"SDict",
]

Expand Down
2 changes: 1 addition & 1 deletion src/dictIO/dict_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from dictIO import DictReader, DictWriter, SDict, create_target_file_name

__ALL__ = ["DictParser"]
__all__ = ["DictParser"]

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion src/dictIO/dict_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
from dictIO.types import K, M, V
from dictIO.utils.counter import DejaVue

__ALL__ = ["DictReader"]
__all__ = ["DictReader"]

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion src/dictIO/dict_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from dictIO import Formatter, NativeParser, SDict, order_keys
from dictIO.types import K, V

__ALL__ = ["DictWriter", "create_target_file_name"]
__all__ = ["DictWriter", "create_target_file_name"]

logger = logging.getLogger(__name__)

Expand Down
6 changes: 3 additions & 3 deletions src/dictIO/formatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
if TYPE_CHECKING:
from dictIO.types import K, M, S, TKey, TSingleValue, TValue, V

__ALL__ = [
"Formatter",
"NativeFormatter",
__all__ = [
"FoamFormatter",
"Formatter",
"JsonFormatter",
"NativeFormatter",
"XmlFormatter",
]

Expand Down
2 changes: 1 addition & 1 deletion src/dictIO/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
if TYPE_CHECKING:
import os

__ALL__ = ["Parser", "NativeParser", "FoamParser", "JsonParser", "XmlParser"]
__all__ = ["FoamParser", "JsonParser", "NativeParser", "Parser", "XmlParser"]

logger = logging.getLogger(__name__)

Expand Down