From a2369f38637c4d6fa09157c2a672ee0a88fcca58 Mon Sep 17 00:00:00 2001 From: Raspithek Date: Fri, 5 May 2023 09:48:00 +0200 Subject: [PATCH] =?UTF-8?q?teil15=20Aufr=C3=A4umarbeiten.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- teil15/.gitignore | 1 - .../network/__pycache__/__init__.cpython-39.pyc | Bin 183 -> 0 bytes teil15/network/__pycache__/const.cpython-39.pyc | Bin 262 -> 0 bytes testing/__pycache__/fib.cpython-39.pyc | Bin 302 -> 306 bytes testing/unittestfib.py | 2 -- 5 files changed, 3 deletions(-) delete mode 100644 teil15/network/__pycache__/__init__.cpython-39.pyc delete mode 100644 teil15/network/__pycache__/const.cpython-39.pyc diff --git a/teil15/.gitignore b/teil15/.gitignore index 94a378f..c7fb3aa 100644 --- a/teil15/.gitignore +++ b/teil15/.gitignore @@ -1,3 +1,2 @@ ./__pycache__ -*.log ./network/__pycache__/* diff --git a/teil15/network/__pycache__/__init__.cpython-39.pyc b/teil15/network/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index 66f1280e8c2e35bc43f228e216351d8ae34fc2d5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 183 zcmYe~<>g`kf(_c9DZW7ZF^Gc(44TX@8G*u@ zjJE{h;~iaGf?R`xef*sred6Q&G?}7Ulk@Y6ONu~7tYj!+22x<+m!5t`er~FML8g8| zWl2VUUUq3wv3^NvW{#nWeqL%xd45s0etdjpUS>&ryk0@&Ee@O9{FKt1R6CGmpMjVG E01AXEJpcdz diff --git a/teil15/network/__pycache__/const.cpython-39.pyc b/teil15/network/__pycache__/const.cpython-39.pyc deleted file mode 100644 index 0e3b26c0b5084458536323ba9dac3b825bc53d52..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 262 zcmYe~<>g`kf|=T$DV>ZA439w^WWWOCH~?|68jwg~NMX!jh+;@#iegMW$??KCCR{`$##paI6pZ%wIqroK0d%dC?r1q7H@iL zNk)EgNm6BAVs7d!ZYUSTiQKA0{7gPex%*!q?;SSOx&3atgcv delta 32 mcmdnQw2p~8k(ZZ?0SLa^1W)AN#Hpm8k)NBYUywQRR0aTqgb9}b diff --git a/testing/unittestfib.py b/testing/unittestfib.py index 818eb23..3cd4ea2 100644 --- a/testing/unittestfib.py +++ b/testing/unittestfib.py @@ -52,8 +52,6 @@ class TestFib(unittest.TestCase): if isinstance(key, numbers.Number): #Überspringen der Überschriftenzeile self.assertEqual(result, fib(int(key))) - print(f'Testdatentyp: ${type(data)}') - print(f'Testdaten ${results}') if __name__ == '__main__': unittest.main()