Server IP : 149.255.58.128 / Your IP : 216.73.216.213
System : Linux cloud516.thundercloud.uk 5.14.0-427.26.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 17 15:51:13 EDT 2024 x86_64
PHP Version : 8.2.28
Disable Function : allow_url_include, apache_child_terminate, apache_setenv, exec, passthru, pcntl_exec, posix_kill, posix_mkfifo, posix_getpwuid, posix_setpgid, posix_setsid, posix_setuid, posix_setgid, posix_seteuid, posix_setegid, posix_uname, proc_close, proc_get_status, proc_open, proc_terminate, shell_exec, show_source, system
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Upload Files :
Command :
Current File : /lib64/python3.9/__pycache__//posixpath.cpython-39.opt-1.pyc
a
�DOgi= � @ s d Z dZdZdZdZdZdZdZdZddl Z ddl
Z
ddlZddlZdd lT g d
�Z
dd� Zd
d� Zdd� Zdd� Zdd� Zdd� Zejj e_ dd� Zdd� Zdd� Zdd� Zdd � Zd!d"� Zd#d$� Zdadad%d&� Zd'd(� Zd)d*� Z d+d,� Z!d-d.� Z"e
j#d/kZ$d4d0d1�Z%d2d3� Z&dS )5a� Common operations on Posix pathnames.
Instead of importing this module directly, import os and refer to
this module as os.path. The "os.path" name is an alias for this
module on Posix systems; on other systems (e.g. Windows),
os.path provides the same operations in a manner specific to that
platform, and is an alias to another module (e.g. ntpath).
Some of this can actually be useful on non-Posix systems too, e.g.
for manipulation of the pathname component of URLs.
�.�..�/�:z
/bin:/usr/binNz /dev/null� )�*)&�normcase�isabs�join�
splitdrive�split�splitext�basename�dirname�commonprefix�getsize�getmtime�getatime�getctime�islink�exists�lexists�isdir�isfile�ismount�
expanduser�
expandvars�normpath�abspath�samefile�sameopenfile�samestat�curdir�pardir�sep�pathsep�defpath�altsep�extsep�devnull�realpath�supports_unicode_filenames�relpath�
commonpathc C s t | t�rdS dS d S )N� /r )�
isinstance�bytes��path� r2 �!/usr/lib64/python3.9/posixpath.py�_get_sep) s
r4 c C s
t �| �S )z6Normalize case of pathname. Has no effect under Posix��os�fspath)�sr2 r2 r3 r 4 s r c C s t �| �} t| �}| �|�S )zTest whether a path is absolute)r6 r7 r4 �
startswith)r8 r# r2 r2 r3 r <