Critics have remarked that those four worthies were truly peerless throughout the ages; yet the present falls short of the past—the ancients favored unadorned simplicity, whereas the moderns prefer refined elegance. Styles of substance and ornament rise and fall in succession, shifting with the changing mores of the times; such evolution is simply the natural order of things. The ideal lies in honoring antiquity without clashing with the present, and embracing modernity without succumbing to its flaws—embodying that perfect balance of substance and refinement that defines the true gentleman. There is surely no need to abandon a carved palace in favor of a cave dwelling, or to trade a jade carriage for a primitive cart with solid wooden wheels.
Current path: lib64/python3.8/__pycache__/
✅ Cloned to:
U
e5d�k �
@ s� d Z ddddddddd d
ddd
g
ZddlZddlZddlZddlZ ddl
ZddlZ
ddlmZ ddlZddlZddlZejZe je jB e jB Zee d�r�ee jO ZeZee d�r�ee jO Zee d�r�e j Z ndZ dZ!e� Z"dd� Z#dd� Z$dd� Z%G dd� d�Z&dd� Z'dd � Z(da)d!d"� Z*d#d$� Z+d%d � Z,d&d� Z-da.d'd� Z/d(d
� Z0d=d*d�Z1d>d+d�Z2d,e!dfd-d�Z3G d.d/� d/�Z4G d0d1� d1�Z5d?dd5�d6d�Z6e j7d7k�s�ej8d8k�r�e6Z9nee d9�a:d@dd5�d:d�Z9G d;d� d�Z;G d<d� de<�Z=dS )Aa� 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_BINARYi'