File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,9 @@ Chained Factories pattern
2
2
=========================
3
3
4
4
This example demonstrate implementation of "Chained Factories" pattern.
5
- Main idea of this pattern is about wrapping `Factory ` into other `Factory `
6
- that mix additional arguments or keyword arguments to a wrapped one.
5
+ Main idea of this pattern is about wrapping :py:class: `Factory ` into
6
+ another :py:class: `Factory ` that mix additional arguments or keyword
7
+ arguments to a wrapped one.
7
8
8
9
Listing of ``data.py ``, demonstrates sample classes structure:
9
10
Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ that were made in every particular version.
7
7
From version 0.7.6 *Dependency Injector * framework strictly
8
8
follows `Semantic versioning `_
9
9
10
+ 3.13.1
11
+ ------
12
+ - Fix typo on "Chained Factories" pattern docs page.
13
+
10
14
3.13.0
11
15
------
12
16
- Add Python 3.7 support.
Original file line number Diff line number Diff line change 1
1
"""Dependency injector top-level package."""
2
2
3
- __version__ = '3.13.0 '
3
+ __version__ = '3.13.1 '
4
4
"""Version number that follows semantic versioning.
5
5
6
6
:type: str
You can’t perform that action at this time.
0 commit comments