From 4800f5bb67008e6eda8abc3296c9e34abfba3661 Mon Sep 17 00:00:00 2001 From: raj_mathe Date: Thu, 9 Jun 2022 15:43:54 +0200 Subject: [PATCH] master > master: code py - umebenennungen --- code/python/src/graphs/graph.py | 2 +- code/python/src/graphs/tarjan.py | 2 +- code/python/src/stacks/stack.py | 2 +- code/python/src/string_alignment/hirschberg.py | 4 ++-- code/python/src/{local => thirdparty}/__init__.py | 0 code/python/src/{local => thirdparty}/config.py | 0 code/python/src/{local => thirdparty}/io.py | 0 code/python/src/{local => thirdparty}/maths.py | 0 code/python/src/{local => thirdparty}/misc.py | 0 code/python/src/{local => thirdparty}/system.py | 0 code/python/src/{local => thirdparty}/typing.py | 0 code/python/src/travel/naive.py | 4 ++-- code/python/tests/{test_core => tests_core}/__init__.py | 0 code/python/tests/{test_core => tests_core}/conftest.py | 0 code/python/tests/{test_core => tests_core}/test_log.py | 0 code/python/tests/{test_graphs => tests_graphs}/__init__.py | 0 code/python/tests/{test_graphs => tests_graphs}/conftest.py | 0 code/python/tests/{test_graphs => tests_graphs}/test_graph.py | 0 .../python/tests/{test_graphs => tests_graphs}/test_tarjan.py | 2 +- code/python/tests/{test_stacks => tests_stacks}/__init__.py | 0 code/python/tests/{test_stacks => tests_stacks}/conftest.py | 0 code/python/tests/{test_stacks => tests_stacks}/test_stack.py | 0 22 files changed, 8 insertions(+), 8 deletions(-) rename code/python/src/{local => thirdparty}/__init__.py (100%) rename code/python/src/{local => thirdparty}/config.py (100%) rename code/python/src/{local => thirdparty}/io.py (100%) rename code/python/src/{local => thirdparty}/maths.py (100%) rename code/python/src/{local => thirdparty}/misc.py (100%) rename code/python/src/{local => thirdparty}/system.py (100%) rename code/python/src/{local => thirdparty}/typing.py (100%) rename code/python/tests/{test_core => tests_core}/__init__.py (100%) rename code/python/tests/{test_core => tests_core}/conftest.py (100%) rename code/python/tests/{test_core => tests_core}/test_log.py (100%) rename code/python/tests/{test_graphs => tests_graphs}/__init__.py (100%) rename code/python/tests/{test_graphs => tests_graphs}/conftest.py (100%) rename code/python/tests/{test_graphs => tests_graphs}/test_graph.py (100%) rename code/python/tests/{test_graphs => tests_graphs}/test_tarjan.py (98%) rename code/python/tests/{test_stacks => tests_stacks}/__init__.py (100%) rename code/python/tests/{test_stacks => tests_stacks}/conftest.py (100%) rename code/python/tests/{test_stacks => tests_stacks}/test_stack.py (100%) diff --git a/code/python/src/graphs/graph.py b/code/python/src/graphs/graph.py index 08b3b97..23b0d4f 100644 --- a/code/python/src/graphs/graph.py +++ b/code/python/src/graphs/graph.py @@ -7,7 +7,7 @@ from __future__ import annotations; -from src.local.typing import *; +from src.thirdparty.typing import *; # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # EXPORTS diff --git a/code/python/src/graphs/tarjan.py b/code/python/src/graphs/tarjan.py index bbc2e26..c3f02a1 100644 --- a/code/python/src/graphs/tarjan.py +++ b/code/python/src/graphs/tarjan.py @@ -11,7 +11,7 @@ from dataclasses import dataclass; from dataclasses import field from platform import node; -from src.local.typing import *; +from src.thirdparty.typing import *; from src.core.log import *; from src.stacks.stack import *; diff --git a/code/python/src/stacks/stack.py b/code/python/src/stacks/stack.py index 0481f72..497a8d1 100644 --- a/code/python/src/stacks/stack.py +++ b/code/python/src/stacks/stack.py @@ -5,7 +5,7 @@ # IMPORTS # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -from src.local.typing import *; +from src.thirdparty.typing import *; # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # EXPORTS diff --git a/code/python/src/string_alignment/hirschberg.py b/code/python/src/string_alignment/hirschberg.py index 5c27c33..fabf19a 100644 --- a/code/python/src/string_alignment/hirschberg.py +++ b/code/python/src/string_alignment/hirschberg.py @@ -6,8 +6,8 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ from __future__ import annotations; -from src.local.typing import *; -from src.local.maths import *; +from src.thirdparty.typing import *; +from src.thirdparty.maths import *; diff --git a/code/python/src/local/__init__.py b/code/python/src/thirdparty/__init__.py similarity index 100% rename from code/python/src/local/__init__.py rename to code/python/src/thirdparty/__init__.py diff --git a/code/python/src/local/config.py b/code/python/src/thirdparty/config.py similarity index 100% rename from code/python/src/local/config.py rename to code/python/src/thirdparty/config.py diff --git a/code/python/src/local/io.py b/code/python/src/thirdparty/io.py similarity index 100% rename from code/python/src/local/io.py rename to code/python/src/thirdparty/io.py diff --git a/code/python/src/local/maths.py b/code/python/src/thirdparty/maths.py similarity index 100% rename from code/python/src/local/maths.py rename to code/python/src/thirdparty/maths.py diff --git a/code/python/src/local/misc.py b/code/python/src/thirdparty/misc.py similarity index 100% rename from code/python/src/local/misc.py rename to code/python/src/thirdparty/misc.py diff --git a/code/python/src/local/system.py b/code/python/src/thirdparty/system.py similarity index 100% rename from code/python/src/local/system.py rename to code/python/src/thirdparty/system.py diff --git a/code/python/src/local/typing.py b/code/python/src/thirdparty/typing.py similarity index 100% rename from code/python/src/local/typing.py rename to code/python/src/thirdparty/typing.py diff --git a/code/python/src/travel/naive.py b/code/python/src/travel/naive.py index 3748925..d9b2539 100644 --- a/code/python/src/travel/naive.py +++ b/code/python/src/travel/naive.py @@ -6,8 +6,8 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ from __future__ import annotations; -from src.local.typing import *; -from src.local.maths import *; +from src.thirdparty.typing import *; +from src.thirdparty.maths import *; # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # EXPORTS diff --git a/code/python/tests/test_core/__init__.py b/code/python/tests/tests_core/__init__.py similarity index 100% rename from code/python/tests/test_core/__init__.py rename to code/python/tests/tests_core/__init__.py diff --git a/code/python/tests/test_core/conftest.py b/code/python/tests/tests_core/conftest.py similarity index 100% rename from code/python/tests/test_core/conftest.py rename to code/python/tests/tests_core/conftest.py diff --git a/code/python/tests/test_core/test_log.py b/code/python/tests/tests_core/test_log.py similarity index 100% rename from code/python/tests/test_core/test_log.py rename to code/python/tests/tests_core/test_log.py diff --git a/code/python/tests/test_graphs/__init__.py b/code/python/tests/tests_graphs/__init__.py similarity index 100% rename from code/python/tests/test_graphs/__init__.py rename to code/python/tests/tests_graphs/__init__.py diff --git a/code/python/tests/test_graphs/conftest.py b/code/python/tests/tests_graphs/conftest.py similarity index 100% rename from code/python/tests/test_graphs/conftest.py rename to code/python/tests/tests_graphs/conftest.py diff --git a/code/python/tests/test_graphs/test_graph.py b/code/python/tests/tests_graphs/test_graph.py similarity index 100% rename from code/python/tests/test_graphs/test_graph.py rename to code/python/tests/tests_graphs/test_graph.py diff --git a/code/python/tests/test_graphs/test_tarjan.py b/code/python/tests/tests_graphs/test_tarjan.py similarity index 98% rename from code/python/tests/test_graphs/test_tarjan.py rename to code/python/tests/tests_graphs/test_tarjan.py index e9e287c..16bef61 100644 --- a/code/python/tests/test_graphs/test_tarjan.py +++ b/code/python/tests/tests_graphs/test_tarjan.py @@ -12,7 +12,7 @@ from pytest import lazy_fixture; from unittest import TestCase; from unittest.mock import patch; -from src.local.typing import *; +from src.thirdparty.typing import *; from src.graphs.graph import *; from src.graphs.tarjan import *; diff --git a/code/python/tests/test_stacks/__init__.py b/code/python/tests/tests_stacks/__init__.py similarity index 100% rename from code/python/tests/test_stacks/__init__.py rename to code/python/tests/tests_stacks/__init__.py diff --git a/code/python/tests/test_stacks/conftest.py b/code/python/tests/tests_stacks/conftest.py similarity index 100% rename from code/python/tests/test_stacks/conftest.py rename to code/python/tests/tests_stacks/conftest.py diff --git a/code/python/tests/test_stacks/test_stack.py b/code/python/tests/tests_stacks/test_stack.py similarity index 100% rename from code/python/tests/test_stacks/test_stack.py rename to code/python/tests/tests_stacks/test_stack.py