Skip to content

Commit efef0a5

Browse files
committed
main branch merged rel branch
2 parents 1061e23 + 386e4e2 commit efef0a5

24 files changed

+43
-42
lines changed

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# Default ignored file name pattern
2-
**/.*/
1+
# Handle patterns that start with a dot
2+
**/.*
3+
!**/.git*
34

45
# Project specific ignored files
56
**/.lyc_pyutils_test_data/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!---
2-
Copyright 2022 Yucheng Liu. GNU LGPL3 license.
2+
Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
33
GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
44
GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
55
First added by username: liu-yucheng

lyc_pyutils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Main package."""
22

3-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
3+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
44
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
55
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
66
# First added by username: liu-yucheng

lyc_pyutils/libs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Libraries."""
22

3-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
3+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
44
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
55
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
66
# First added by username: liu-yucheng

lyc_pyutils/libs/batchlog.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Batch logging."""
22

3-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
3+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
44
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
55
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
66
# First added by username: liu-yucheng
@@ -20,7 +20,7 @@ def logstr(logs, string=""):
2020
"""
2121

2222
# Part of LYC-PythonUtils
23-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
23+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
2424
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
2525
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
2626

@@ -41,7 +41,7 @@ def logln(logs, line=""):
4141
"""
4242

4343
# Part of LYC-PythonUtils
44-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
44+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
4545
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
4646
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
4747

@@ -63,7 +63,7 @@ def flushlogs(logs):
6363
"""
6464

6565
# Part of LYC-PythonUtils
66-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
66+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
6767
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
6868
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
6969

lyc_pyutils/libs/clamps.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Clamp functions."""
22

3-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
3+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
44
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
55
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
66
# First added by username: liu-yucheng
@@ -22,7 +22,7 @@ def clamp_float(inval, bound1, bound2):
2222
"""
2323

2424
# Part of LYC-PythonUtils
25-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
25+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
2626
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
2727
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
2828

@@ -64,7 +64,7 @@ def clamp_int(inval, bound1, bound2):
6464
"""
6565

6666
# Part of LYC-PythonUtils
67-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
67+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
6868
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
6969
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
7070

lyc_pyutils/libs/dotdict.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Dot dictionary."""
22

3-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
3+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
44
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
55
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
66
# First added by username: liu-yucheng
@@ -47,7 +47,7 @@ class DotDict(dict):
4747
"""
4848

4949
# Part of LYC-PythonUtils
50-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
50+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
5151
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
5252
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
5353

lyc_pyutils/libs/functhread.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Functional thread."""
22

3-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
3+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
44
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
55
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
66
# First added by username: liu-yucheng
@@ -18,7 +18,7 @@ class FuncThread(_Thread):
1818
"""
1919

2020
# Part of LYC-PythonUtils
21-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
21+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
2222
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
2323
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
2424

lyc_pyutils/libs/jsonrw.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""JSON reading and writing."""
22

3-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
3+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
44
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
55
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
66
# First added by username: liu-yucheng
@@ -26,7 +26,7 @@ def load_json(from_file):
2626
"""
2727

2828
# Part of LYC-PythonUtils
29-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
29+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
3030
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
3131
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
3232

@@ -66,7 +66,7 @@ def save_json(from_obj, to_file):
6666
"""
6767

6868
# Part of LYC-PythonUtils
69-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
69+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
7070
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
7171
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
7272

@@ -106,7 +106,7 @@ def load_json_str(from_str):
106106
"""
107107

108108
# Part of LYC-PythonUtils
109-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
109+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
110110
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
111111
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
112112

@@ -146,7 +146,7 @@ def save_json_str(from_obj):
146146
"""
147147

148148
# Part of LYC-PythonUtils
149-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
149+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
150150
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
151151
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
152152

lyc_pyutils/libs/pack_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Information items initially set to unknown and will update at runtime.
44
"""
55

6-
# Copyright 2022 Yucheng Liu. GNU LGPL3 license.
6+
# Copyright 2022-2023 Yucheng Liu. GNU LGPL3 license.
77
# GNU LGPL3 license copy: https://www.gnu.org/licenses/lgpl-3.0.txt
88
# GNU LGPL3 is based on GNU GPL3, GNU GPL3 copy: https://www.gnu.org/licenses/gpl-3.0.txt
99
# First added by username: liu-yucheng

0 commit comments

Comments
 (0)