GitPython 3.1.43__tar.gz → 3.1.45__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {GitPython-3.1.43 → gitpython-3.1.45}/AUTHORS +2 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/CONTRIBUTING.md +5 -0
- {GitPython-3.1.43 → gitpython-3.1.45/GitPython.egg-info}/PKG-INFO +20 -11
- {GitPython-3.1.43 → gitpython-3.1.45}/GitPython.egg-info/requires.txt +3 -8
- {GitPython-3.1.43/GitPython.egg-info → gitpython-3.1.45}/PKG-INFO +20 -11
- {GitPython-3.1.43 → gitpython-3.1.45}/README.md +4 -1
- gitpython-3.1.45/VERSION +1 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/doc/Makefile +1 -1
- gitpython-3.1.45/doc/requirements.txt +3 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/doc/source/changes.rst +13 -1
- {GitPython-3.1.43 → gitpython-3.1.45}/doc/source/index.rst +0 -1
- {GitPython-3.1.43 → gitpython-3.1.45}/doc/source/intro.rst +0 -1
- {GitPython-3.1.43 → gitpython-3.1.45}/doc/source/roadmap.rst +0 -1
- {GitPython-3.1.43 → gitpython-3.1.45}/git/__init__.py +1 -1
- {GitPython-3.1.43 → gitpython-3.1.45}/git/cmd.py +240 -222
- {GitPython-3.1.43 → gitpython-3.1.45}/git/config.py +18 -11
- {GitPython-3.1.43 → gitpython-3.1.45}/git/diff.py +6 -6
- {GitPython-3.1.43 → gitpython-3.1.45}/git/index/base.py +34 -20
- {GitPython-3.1.43 → gitpython-3.1.45}/git/index/fun.py +1 -1
- {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/base.py +2 -2
- {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/commit.py +19 -9
- {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/submodule/base.py +11 -1
- {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/tag.py +2 -3
- {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/tree.py +3 -1
- {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/util.py +3 -3
- {GitPython-3.1.43 → gitpython-3.1.45}/git/refs/head.py +2 -2
- {GitPython-3.1.43 → gitpython-3.1.45}/git/refs/log.py +1 -1
- {GitPython-3.1.43 → gitpython-3.1.45}/git/refs/symbolic.py +24 -17
- {GitPython-3.1.43 → gitpython-3.1.45}/git/remote.py +14 -7
- {GitPython-3.1.43 → gitpython-3.1.45}/git/repo/base.py +43 -25
- {GitPython-3.1.43 → gitpython-3.1.45}/git/repo/fun.py +9 -3
- {GitPython-3.1.43 → gitpython-3.1.45}/git/types.py +1 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/util.py +13 -7
- {GitPython-3.1.43 → gitpython-3.1.45}/pyproject.toml +15 -9
- gitpython-3.1.45/requirements.txt +2 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/setup.py +0 -1
- GitPython-3.1.43/VERSION +0 -1
- GitPython-3.1.43/doc/requirements.txt +0 -8
- GitPython-3.1.43/requirements.txt +0 -2
- {GitPython-3.1.43 → gitpython-3.1.45}/CHANGES +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/GitPython.egg-info/SOURCES.txt +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/GitPython.egg-info/dependency_links.txt +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/GitPython.egg-info/not-zip-safe +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/GitPython.egg-info/top_level.txt +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/LICENSE +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/MANIFEST.in +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/doc/.gitignore +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/doc/source/conf.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/doc/source/quickstart.rst +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/doc/source/reference.rst +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/doc/source/tutorial.rst +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/compat.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/db.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/exc.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/index/__init__.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/index/typ.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/index/util.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/__init__.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/blob.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/fun.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/submodule/__init__.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/submodule/root.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/objects/submodule/util.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/py.typed +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/refs/__init__.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/refs/reference.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/refs/remote.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/refs/tag.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/git/repo/__init__.py +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/setup.cfg +0 -0
- {GitPython-3.1.43 → gitpython-3.1.45}/test-requirements.txt +0 -0
|
@@ -54,5 +54,7 @@ Contributors are:
|
|
|
54
54
|
-Wenhan Zhu <wzhu.cosmos _at_ gmail.com>
|
|
55
55
|
-Eliah Kagan <eliah.kagan _at_ gmail.com>
|
|
56
56
|
-Ethan Lin <et.repositories _at_ gmail.com>
|
|
57
|
+
-Jonas Scharpf <jonas.scharpf _at_ checkmk.com>
|
|
58
|
+
-Gordon Marx
|
|
57
59
|
|
|
58
60
|
Portions derived from other open source works and are clearly marked.
|
|
@@ -8,3 +8,8 @@ The following is a short step-by-step rundown of what one typically would do to
|
|
|
8
8
|
- Try to avoid massive commits and prefer to take small steps, with one commit for each.
|
|
9
9
|
- Feel free to add yourself to AUTHORS file.
|
|
10
10
|
- Create a pull request.
|
|
11
|
+
|
|
12
|
+
## Fuzzing Test Specific Documentation
|
|
13
|
+
|
|
14
|
+
For details related to contributing to the fuzzing test suite and OSS-Fuzz integration, please
|
|
15
|
+
refer to the dedicated [fuzzing README](./fuzzing/README.md).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: GitPython
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.45
|
|
4
4
|
Summary: GitPython is a Python library used to interact with Git repositories
|
|
5
5
|
Home-page: https://github.com/gitpython-developers/GitPython
|
|
6
6
|
Author: Sebastian Thiel, Michael Trier
|
|
@@ -9,7 +9,6 @@ License: BSD-3-Clause
|
|
|
9
9
|
Classifier: Development Status :: 5 - Production/Stable
|
|
10
10
|
Classifier: Environment :: Console
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
|
-
Classifier: License :: OSI Approved :: BSD License
|
|
13
12
|
Classifier: Operating System :: OS Independent
|
|
14
13
|
Classifier: Operating System :: POSIX
|
|
15
14
|
Classifier: Operating System :: Microsoft :: Windows
|
|
@@ -28,7 +27,7 @@ Description-Content-Type: text/markdown
|
|
|
28
27
|
License-File: LICENSE
|
|
29
28
|
License-File: AUTHORS
|
|
30
29
|
Requires-Dist: gitdb<5,>=4.0.1
|
|
31
|
-
Requires-Dist: typing-extensions>=3.
|
|
30
|
+
Requires-Dist: typing-extensions>=3.10.0.2; python_version < "3.10"
|
|
32
31
|
Provides-Extra: test
|
|
33
32
|
Requires-Dist: coverage[toml]; extra == "test"
|
|
34
33
|
Requires-Dist: ddt!=1.4.3,>=1.1.1; extra == "test"
|
|
@@ -42,14 +41,21 @@ Requires-Dist: pytest-mock; extra == "test"
|
|
|
42
41
|
Requires-Dist: pytest-sugar; extra == "test"
|
|
43
42
|
Requires-Dist: typing-extensions; python_version < "3.11" and extra == "test"
|
|
44
43
|
Provides-Extra: doc
|
|
45
|
-
Requires-Dist: sphinx
|
|
44
|
+
Requires-Dist: sphinx<7.2,>=7.1.2; extra == "doc"
|
|
46
45
|
Requires-Dist: sphinx_rtd_theme; extra == "doc"
|
|
47
|
-
Requires-Dist: sphinxcontrib-applehelp<=1.0.4,>=1.0.2; extra == "doc"
|
|
48
|
-
Requires-Dist: sphinxcontrib-devhelp==1.0.2; extra == "doc"
|
|
49
|
-
Requires-Dist: sphinxcontrib-htmlhelp<=2.0.1,>=2.0.0; extra == "doc"
|
|
50
|
-
Requires-Dist: sphinxcontrib-qthelp==1.0.3; extra == "doc"
|
|
51
|
-
Requires-Dist: sphinxcontrib-serializinghtml==1.1.5; extra == "doc"
|
|
52
46
|
Requires-Dist: sphinx-autodoc-typehints; extra == "doc"
|
|
47
|
+
Dynamic: author
|
|
48
|
+
Dynamic: author-email
|
|
49
|
+
Dynamic: classifier
|
|
50
|
+
Dynamic: description
|
|
51
|
+
Dynamic: description-content-type
|
|
52
|
+
Dynamic: home-page
|
|
53
|
+
Dynamic: license
|
|
54
|
+
Dynamic: license-file
|
|
55
|
+
Dynamic: provides-extra
|
|
56
|
+
Dynamic: requires-dist
|
|
57
|
+
Dynamic: requires-python
|
|
58
|
+
Dynamic: summary
|
|
53
59
|
|
|
54
60
|

|
|
55
61
|
[](https://readthedocs.org/projects/gitpython/?badge=stable)
|
|
@@ -154,7 +160,7 @@ In the less common case that you do not want to install test dependencies, `pip
|
|
|
154
160
|
|
|
155
161
|
#### With editable *dependencies* (not preferred, and rarely needed)
|
|
156
162
|
|
|
157
|
-
In rare cases, you may want to work on GitPython and one or both of its [gitdb](https://github.com/gitpython-developers/gitdb) and [smmap](https://github.com/gitpython-developers/smmap) dependencies at the same time, with changes in your local working copy of gitdb or smmap
|
|
163
|
+
In rare cases, you may want to work on GitPython and one or both of its [gitdb](https://github.com/gitpython-developers/gitdb) and [smmap](https://github.com/gitpython-developers/smmap) dependencies at the same time, with changes in your local working copy of gitdb or smmap immediately reflected in the behavior of your local working copy of GitPython. This can be done by making editable installations of those dependencies in the same virtual environment where you install GitPython.
|
|
158
164
|
|
|
159
165
|
If you want to do that *and* you want the versions in GitPython's git submodules to be used, then pass `-e git/ext/gitdb` and/or `-e git/ext/gitdb/gitdb/ext/smmap` to `pip install`. This can be done in any order, and in separate `pip install` commands or the same one, so long as `-e` appears before *each* path. For example, you can install GitPython, gitdb, and smmap editably in the currently active virtual environment this way:
|
|
160
166
|
|
|
@@ -293,5 +299,8 @@ Please have a look at the [contributions file][contributing].
|
|
|
293
299
|
|
|
294
300
|
[3-Clause BSD License](https://opensource.org/license/bsd-3-clause/), also known as the New BSD License. See the [LICENSE file][license].
|
|
295
301
|
|
|
302
|
+
One file exclusively used for fuzz testing is subject to [a separate license, detailed here](./fuzzing/README.md#license).
|
|
303
|
+
This file is not included in the wheel or sdist packages published by the maintainers of GitPython.
|
|
304
|
+
|
|
296
305
|
[contributing]: https://github.com/gitpython-developers/GitPython/blob/main/CONTRIBUTING.md
|
|
297
306
|
[license]: https://github.com/gitpython-developers/GitPython/blob/main/LICENSE
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
gitdb<5,>=4.0.1
|
|
2
2
|
|
|
3
|
-
[:python_version < "3.
|
|
4
|
-
typing-extensions>=3.
|
|
3
|
+
[:python_version < "3.10"]
|
|
4
|
+
typing-extensions>=3.10.0.2
|
|
5
5
|
|
|
6
6
|
[doc]
|
|
7
|
-
sphinx
|
|
7
|
+
sphinx<7.2,>=7.1.2
|
|
8
8
|
sphinx_rtd_theme
|
|
9
|
-
sphinxcontrib-applehelp<=1.0.4,>=1.0.2
|
|
10
|
-
sphinxcontrib-devhelp==1.0.2
|
|
11
|
-
sphinxcontrib-htmlhelp<=2.0.1,>=2.0.0
|
|
12
|
-
sphinxcontrib-qthelp==1.0.3
|
|
13
|
-
sphinxcontrib-serializinghtml==1.1.5
|
|
14
9
|
sphinx-autodoc-typehints
|
|
15
10
|
|
|
16
11
|
[test]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: GitPython
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.45
|
|
4
4
|
Summary: GitPython is a Python library used to interact with Git repositories
|
|
5
5
|
Home-page: https://github.com/gitpython-developers/GitPython
|
|
6
6
|
Author: Sebastian Thiel, Michael Trier
|
|
@@ -9,7 +9,6 @@ License: BSD-3-Clause
|
|
|
9
9
|
Classifier: Development Status :: 5 - Production/Stable
|
|
10
10
|
Classifier: Environment :: Console
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
|
-
Classifier: License :: OSI Approved :: BSD License
|
|
13
12
|
Classifier: Operating System :: OS Independent
|
|
14
13
|
Classifier: Operating System :: POSIX
|
|
15
14
|
Classifier: Operating System :: Microsoft :: Windows
|
|
@@ -28,7 +27,7 @@ Description-Content-Type: text/markdown
|
|
|
28
27
|
License-File: LICENSE
|
|
29
28
|
License-File: AUTHORS
|
|
30
29
|
Requires-Dist: gitdb<5,>=4.0.1
|
|
31
|
-
Requires-Dist: typing-extensions>=3.
|
|
30
|
+
Requires-Dist: typing-extensions>=3.10.0.2; python_version < "3.10"
|
|
32
31
|
Provides-Extra: test
|
|
33
32
|
Requires-Dist: coverage[toml]; extra == "test"
|
|
34
33
|
Requires-Dist: ddt!=1.4.3,>=1.1.1; extra == "test"
|
|
@@ -42,14 +41,21 @@ Requires-Dist: pytest-mock; extra == "test"
|
|
|
42
41
|
Requires-Dist: pytest-sugar; extra == "test"
|
|
43
42
|
Requires-Dist: typing-extensions; python_version < "3.11" and extra == "test"
|
|
44
43
|
Provides-Extra: doc
|
|
45
|
-
Requires-Dist: sphinx
|
|
44
|
+
Requires-Dist: sphinx<7.2,>=7.1.2; extra == "doc"
|
|
46
45
|
Requires-Dist: sphinx_rtd_theme; extra == "doc"
|
|
47
|
-
Requires-Dist: sphinxcontrib-applehelp<=1.0.4,>=1.0.2; extra == "doc"
|
|
48
|
-
Requires-Dist: sphinxcontrib-devhelp==1.0.2; extra == "doc"
|
|
49
|
-
Requires-Dist: sphinxcontrib-htmlhelp<=2.0.1,>=2.0.0; extra == "doc"
|
|
50
|
-
Requires-Dist: sphinxcontrib-qthelp==1.0.3; extra == "doc"
|
|
51
|
-
Requires-Dist: sphinxcontrib-serializinghtml==1.1.5; extra == "doc"
|
|
52
46
|
Requires-Dist: sphinx-autodoc-typehints; extra == "doc"
|
|
47
|
+
Dynamic: author
|
|
48
|
+
Dynamic: author-email
|
|
49
|
+
Dynamic: classifier
|
|
50
|
+
Dynamic: description
|
|
51
|
+
Dynamic: description-content-type
|
|
52
|
+
Dynamic: home-page
|
|
53
|
+
Dynamic: license
|
|
54
|
+
Dynamic: license-file
|
|
55
|
+
Dynamic: provides-extra
|
|
56
|
+
Dynamic: requires-dist
|
|
57
|
+
Dynamic: requires-python
|
|
58
|
+
Dynamic: summary
|
|
53
59
|
|
|
54
60
|

|
|
55
61
|
[](https://readthedocs.org/projects/gitpython/?badge=stable)
|
|
@@ -154,7 +160,7 @@ In the less common case that you do not want to install test dependencies, `pip
|
|
|
154
160
|
|
|
155
161
|
#### With editable *dependencies* (not preferred, and rarely needed)
|
|
156
162
|
|
|
157
|
-
In rare cases, you may want to work on GitPython and one or both of its [gitdb](https://github.com/gitpython-developers/gitdb) and [smmap](https://github.com/gitpython-developers/smmap) dependencies at the same time, with changes in your local working copy of gitdb or smmap
|
|
163
|
+
In rare cases, you may want to work on GitPython and one or both of its [gitdb](https://github.com/gitpython-developers/gitdb) and [smmap](https://github.com/gitpython-developers/smmap) dependencies at the same time, with changes in your local working copy of gitdb or smmap immediately reflected in the behavior of your local working copy of GitPython. This can be done by making editable installations of those dependencies in the same virtual environment where you install GitPython.
|
|
158
164
|
|
|
159
165
|
If you want to do that *and* you want the versions in GitPython's git submodules to be used, then pass `-e git/ext/gitdb` and/or `-e git/ext/gitdb/gitdb/ext/smmap` to `pip install`. This can be done in any order, and in separate `pip install` commands or the same one, so long as `-e` appears before *each* path. For example, you can install GitPython, gitdb, and smmap editably in the currently active virtual environment this way:
|
|
160
166
|
|
|
@@ -293,5 +299,8 @@ Please have a look at the [contributions file][contributing].
|
|
|
293
299
|
|
|
294
300
|
[3-Clause BSD License](https://opensource.org/license/bsd-3-clause/), also known as the New BSD License. See the [LICENSE file][license].
|
|
295
301
|
|
|
302
|
+
One file exclusively used for fuzz testing is subject to [a separate license, detailed here](./fuzzing/README.md#license).
|
|
303
|
+
This file is not included in the wheel or sdist packages published by the maintainers of GitPython.
|
|
304
|
+
|
|
296
305
|
[contributing]: https://github.com/gitpython-developers/GitPython/blob/main/CONTRIBUTING.md
|
|
297
306
|
[license]: https://github.com/gitpython-developers/GitPython/blob/main/LICENSE
|
|
@@ -101,7 +101,7 @@ In the less common case that you do not want to install test dependencies, `pip
|
|
|
101
101
|
|
|
102
102
|
#### With editable *dependencies* (not preferred, and rarely needed)
|
|
103
103
|
|
|
104
|
-
In rare cases, you may want to work on GitPython and one or both of its [gitdb](https://github.com/gitpython-developers/gitdb) and [smmap](https://github.com/gitpython-developers/smmap) dependencies at the same time, with changes in your local working copy of gitdb or smmap
|
|
104
|
+
In rare cases, you may want to work on GitPython and one or both of its [gitdb](https://github.com/gitpython-developers/gitdb) and [smmap](https://github.com/gitpython-developers/smmap) dependencies at the same time, with changes in your local working copy of gitdb or smmap immediately reflected in the behavior of your local working copy of GitPython. This can be done by making editable installations of those dependencies in the same virtual environment where you install GitPython.
|
|
105
105
|
|
|
106
106
|
If you want to do that *and* you want the versions in GitPython's git submodules to be used, then pass `-e git/ext/gitdb` and/or `-e git/ext/gitdb/gitdb/ext/smmap` to `pip install`. This can be done in any order, and in separate `pip install` commands or the same one, so long as `-e` appears before *each* path. For example, you can install GitPython, gitdb, and smmap editably in the currently active virtual environment this way:
|
|
107
107
|
|
|
@@ -240,5 +240,8 @@ Please have a look at the [contributions file][contributing].
|
|
|
240
240
|
|
|
241
241
|
[3-Clause BSD License](https://opensource.org/license/bsd-3-clause/), also known as the New BSD License. See the [LICENSE file][license].
|
|
242
242
|
|
|
243
|
+
One file exclusively used for fuzz testing is subject to [a separate license, detailed here](./fuzzing/README.md#license).
|
|
244
|
+
This file is not included in the wheel or sdist packages published by the maintainers of GitPython.
|
|
245
|
+
|
|
243
246
|
[contributing]: https://github.com/gitpython-developers/GitPython/blob/main/CONTRIBUTING.md
|
|
244
247
|
[license]: https://github.com/gitpython-developers/GitPython/blob/main/LICENSE
|
gitpython-3.1.45/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.1.45
|
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
Changelog
|
|
3
3
|
=========
|
|
4
4
|
|
|
5
|
+
3.1.45
|
|
6
|
+
======
|
|
7
|
+
|
|
8
|
+
See the following for all changes.
|
|
9
|
+
https://github.com/gitpython-developers/GitPython/releases/tag/3.1.45
|
|
10
|
+
|
|
11
|
+
3.1.44
|
|
12
|
+
======
|
|
13
|
+
|
|
14
|
+
See the following for all changes.
|
|
15
|
+
https://github.com/gitpython-developers/GitPython/releases/tag/3.1.44
|
|
16
|
+
|
|
5
17
|
3.1.43
|
|
6
18
|
======
|
|
7
19
|
|
|
@@ -20,7 +32,7 @@ https://github.com/gitpython-developers/GitPython/releases/tag/3.1.42
|
|
|
20
32
|
3.1.41
|
|
21
33
|
======
|
|
22
34
|
|
|
23
|
-
This release is relevant for security as it fixes a possible
|
|
35
|
+
This release is relevant for security as it fixes a possible arbitrary
|
|
24
36
|
code execution on Windows.
|
|
25
37
|
|
|
26
38
|
See this PR for details: https://github.com/gitpython-developers/GitPython/pull/1792
|