⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.17
Server IP:
13.127.59.50
Server:
Linux ip-172-31-46-210 5.15.0-1033-aws #37~20.04.1-Ubuntu SMP Fri Mar 17 11:39:30 UTC 2023 x86_64
Server Software:
Apache/2.4.41 (Ubuntu)
PHP Version:
7.4.3-4ubuntu2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
python3
/
dist-packages
/
twisted
/
python
/
test
/
View File Name :
test_dist3.py
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Tests for L{twisted.python.dist3}. """ from __future__ import absolute_import, division import os import twisted from twisted.trial.unittest import TestCase from twisted.python.compat import _PY3 from twisted.python._setup import notPortedModules class ModulesToInstallTests(TestCase): """ Tests for L{notPortedModules}. """ def test_exist(self): """ All modules listed in L{notPortedModules} exist on Py2. """ root = os.path.dirname(os.path.dirname(twisted.__file__)) for module in notPortedModules: segments = module.split(".") segments[-1] += ".py" path = os.path.join(root, *segments) alternateSegments = module.split(".") + ["__init__.py"] packagePath = os.path.join(root, *alternateSegments) self.assertTrue(os.path.exists(path) or os.path.exists(packagePath), "Module {0} does not exist".format(module)) def test_notexist(self): """ All modules listed in L{notPortedModules} do not exist on Py3. """ root = os.path.dirname(os.path.dirname(twisted.__file__)) for module in notPortedModules: segments = module.split(".") segments[-1] += ".py" path = os.path.join(root, *segments) alternateSegments = module.split(".") + ["__init__.py"] packagePath = os.path.join(root, *alternateSegments) self.assertFalse(os.path.exists(path) or os.path.exists(packagePath), "Module {0} exists".format(module)) if _PY3: test_exist.skip = "Only on Python 2" else: test_notexist.skip = "Only on Python 3"