From: Sergey Matveev Date: Sat, 30 Nov 2024 20:08:11 +0000 (+0300) Subject: Add copyright information X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=77a694aa746e89d11d1d12f25d05a137f45e38173039cf07df8437b043a5e22a;p=keks.git Add copyright information --- diff --git a/pyac/tests/strategies.py b/pyac/tests/strategies.py index 6d18d12..4d8d383 100644 --- a/pyac/tests/strategies.py +++ b/pyac/tests/strategies.py @@ -1,3 +1,19 @@ +# pyac -- Python YAC implementation +# Copyright (C) 2024-2025 Antont Rudenko +# 2024-2025 Sergey Matveev +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program. If not, see . + from hypothesis.strategies import binary from hypothesis.strategies import booleans from hypothesis.strategies import characters diff --git a/pyac/tests/test_blob.py b/pyac/tests/test_blob.py index 5c6cc34..42840cf 100644 --- a/pyac/tests/test_blob.py +++ b/pyac/tests/test_blob.py @@ -1,3 +1,19 @@ +# pyac -- Python YAC implementation +# Copyright (C) 2024-2025 Antont Rudenko +# 2024-2025 Sergey Matveev +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program. If not, see . + from os import urandom from unittest import TestCase diff --git a/pyac/tests/test_bool.py b/pyac/tests/test_bool.py index ef19217..02fb732 100644 --- a/pyac/tests/test_bool.py +++ b/pyac/tests/test_bool.py @@ -1,3 +1,19 @@ +# pyac -- Python YAC implementation +# Copyright (C) 2024-2025 Antont Rudenko +# 2024-2025 Sergey Matveev +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program. If not, see . + from unittest import TestCase from hypothesis import given diff --git a/pyac/tests/test_everything.py b/pyac/tests/test_everything.py index 86b895b..97a0741 100644 --- a/pyac/tests/test_everything.py +++ b/pyac/tests/test_everything.py @@ -1,3 +1,19 @@ +# pyac -- Python YAC implementation +# Copyright (C) 2024-2025 Antont Rudenko +# 2024-2025 Sergey Matveev +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program. If not, see . + from typing import Any from unittest import TestCase diff --git a/pyac/tests/test_float.py b/pyac/tests/test_float.py index 1a279bb..7afaf51 100644 --- a/pyac/tests/test_float.py +++ b/pyac/tests/test_float.py @@ -1,3 +1,19 @@ +# pyac -- Python YAC implementation +# Copyright (C) 2024-2025 Antont Rudenko +# 2024-2025 Sergey Matveev +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program. If not, see . + from unittest import TestCase from hypothesis import given diff --git a/pyac/tests/test_generic.py b/pyac/tests/test_generic.py index 3001b67..b439b6a 100644 --- a/pyac/tests/test_generic.py +++ b/pyac/tests/test_generic.py @@ -1,3 +1,19 @@ +# pyac -- Python YAC implementation +# Copyright (C) 2024-2025 Antont Rudenko +# 2024-2025 Sergey Matveev +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program. If not, see . + from unittest import TestCase from pyac import DecodeError diff --git a/pyac/tests/test_int.py b/pyac/tests/test_int.py index 16d3629..1ee7163 100644 --- a/pyac/tests/test_int.py +++ b/pyac/tests/test_int.py @@ -1,3 +1,19 @@ +# pyac -- Python YAC implementation +# Copyright (C) 2024-2025 Antont Rudenko +# 2024-2025 Sergey Matveev +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program. If not, see . + from unittest import TestCase from hypothesis import given diff --git a/pyac/tests/test_list.py b/pyac/tests/test_list.py index 820e974..47eab06 100644 --- a/pyac/tests/test_list.py +++ b/pyac/tests/test_list.py @@ -1,3 +1,19 @@ +# pyac -- Python YAC implementation +# Copyright (C) 2024-2025 Antont Rudenko +# 2024-2025 Sergey Matveev +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program. If not, see . + from typing import List from unittest import TestCase diff --git a/pyac/tests/test_map.py b/pyac/tests/test_map.py index c0c753e..5e31c9c 100644 --- a/pyac/tests/test_map.py +++ b/pyac/tests/test_map.py @@ -1,3 +1,19 @@ +# pyac -- Python YAC implementation +# Copyright (C) 2024-2025 Antont Rudenko +# 2024-2025 Sergey Matveev +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program. If not, see . + from typing import Any from typing import Mapping from unittest import TestCase diff --git a/pyac/tests/test_not_enough_data.py b/pyac/tests/test_not_enough_data.py index 5d1f89c..1cec223 100644 --- a/pyac/tests/test_not_enough_data.py +++ b/pyac/tests/test_not_enough_data.py @@ -1,3 +1,19 @@ +# pyac -- Python YAC implementation +# Copyright (C) 2024-2025 Antont Rudenko +# 2024-2025 Sergey Matveev +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program. If not, see . + from unittest import TestCase from hypothesis import given diff --git a/pyac/tests/test_str.py b/pyac/tests/test_str.py index f4cf622..c8f21c7 100644 --- a/pyac/tests/test_str.py +++ b/pyac/tests/test_str.py @@ -1,3 +1,19 @@ +# pyac -- Python YAC implementation +# Copyright (C) 2024-2025 Antont Rudenko +# 2024-2025 Sergey Matveev +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program. If not, see . + from unittest import TestCase from hypothesis import given diff --git a/pyac/tests/test_tai.py b/pyac/tests/test_tai.py index d40e2d0..cd910b9 100644 --- a/pyac/tests/test_tai.py +++ b/pyac/tests/test_tai.py @@ -1,3 +1,19 @@ +# pyac -- Python YAC implementation +# Copyright (C) 2024-2025 Antont Rudenko +# 2024-2025 Sergey Matveev +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program. If not, see . + from datetime import datetime from unittest import TestCase diff --git a/pyac/tests/test_uuid.py b/pyac/tests/test_uuid.py index e95002f..1ee0bfe 100644 --- a/pyac/tests/test_uuid.py +++ b/pyac/tests/test_uuid.py @@ -1,3 +1,19 @@ +# pyac -- Python YAC implementation +# Copyright (C) 2024-2025 Antont Rudenko +# 2024-2025 Sergey Matveev +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program. If not, see . + from unittest import TestCase from uuid import UUID