Server IP : 149.255.58.128 / Your IP : 216.73.216.236
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__//tempfile.cpython-39.pyc
a
�DOg;m � @ s� d Z g d�ZddlZddlZddlZddlZ ddl
ZddlZ
ddlmZ ddlZddlZddlZddlZejZe je jB e jB Zee d�r�ee jO ZeZ ee d�r�e e j!O Z ee d�r�e j"Z"ndZ"d Z#e� Z$d
d� Z%dd
� Z&dd� Z'G dd� d�Z(dd� Z)dd� Z*da+dd� Z,dd� Z-dd� Z.dd� Z/dd� Z0d d!� Z1da2d"d#� Z3d$d%� Z4dAd'd(�Z5dBd)d*�Z6d+e#dfd,d-�Z7G d.d/� d/�Z8G d0d1� d1�Z9dCdd5�d6d7�Z:e j;d8k�s�ej<d9k�r�e:Z=nee d:�a>dDdd5�d;d<�Z=G d=d>� d>�Z?G d?d@� d@e@�ZAdS )Ea� Temporary files.
This module provides generic, low- and high-level interfaces for
creating temporary files and directories. All of the interfaces
provided by this module can be used without fear of race conditions
except for 'mktemp'. 'mktemp' is subject to race conditions and
should not be used; it is provided for backward compatibility only.
The default path names are returned as str. If you supply bytes as
input, all return values will be in bytes. Ex:
>>> tempfile.mkstemp()
(4, '/tmp/tmptpu9nin8')
>>> tempfile.mkdtemp(suffix=b'')
b'/tmp/tmppbi8f0hy'
This module also provides some data items to the user:
TMP_MAX - maximum number of names that will be tried before
giving up.
tempdir - If this is set to a string before the first use of
any routine from this module, it will be considered as
another candidate location to store temporary files.
)
�NamedTemporaryFile�
TemporaryFile�SpooledTemporaryFile�TemporaryDirectory�mkstemp�mkdtemp�mktemp�TMP_MAX�
gettempprefix�tempdir�
gettempdir�gettempprefixb�gettempdirb� N)�Random�
O_NOFOLLOW�O_BINARYr i'