404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@3.16.78.190: ~ $
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Imports external packages that replace or emulate internal packages.
If the external module is not present, the build-in module is imported.
"""

try:
    import pathlib2
except ImportError:
    pathlib2 = None

try:
    import scandir

    use_scandir_package = True
    use_builtin_scandir = False
except ImportError:
    try:
        from os import scandir  # noqa: F401

        use_builtin_scandir = True
        use_scandir_package = False
    except ImportError:
        use_builtin_scandir = False
        use_scandir_package = False

use_scandir = use_scandir_package or use_builtin_scandir

Filemanager

Name Type Size Permission Actions
__pycache__ Folder 0755
pytest_tests Folder 0755
tests Folder 0755
__init__.py File 56 B 0644
_version.py File 22 B 0644
extra_packages.py File 1.12 KB 0644
fake_file.py File 44.85 KB 0644
fake_filesystem.py File 113.95 KB 0644
fake_filesystem_shutil.py File 3.67 KB 0644
fake_filesystem_unittest.py File 41.69 KB 0644
fake_io.py File 5.95 KB 0644
fake_open.py File 13.07 KB 0644
fake_os.py File 49.61 KB 0644
fake_path.py File 17.49 KB 0644
fake_pathlib.py File 34.06 KB 0644
fake_scandir.py File 11.06 KB 0644
helpers.py File 12.87 KB 0644
mox3_stubout.py File 5.78 KB 0644
patched_packages.py File 4.3 KB 0644
py.typed File 68 B 0644
pytest_plugin.py File 1.7 KB 0644