GIF89;aGIF89;aGIF89;a
Team Anon Force
https://t.me/Professor6T9x
Professor6T9 Web SheLL
Linux das102.truehost.cloud 4.18.0-553.8.1.lve.el8.x86_64 #1 SMP Thu Jul 4 16:24:39 UTC 2024 x86_64
LiteSpeed
156.232.88.2
/
proc
/
thread-self
/
root
/
opt
/
alt
/
python38
/
lib
/
python3.8
/
site-packages
/
requests
/
__pycache__
[ HOME ]
Exec
Submit
File Name : help.cpython-38.pyc
U Ƿ�f# � @ s� d Z ddlZddlZddlZddlZddlZddlZddlmZ zddl Z W n ek rd dZ Y nX zddlZW n ek r� dZY nX zddl mZ W n ek r� dZdZdZY nX ddlZddlZdd� Zdd � Zd d� Zedkr�e� dS ) z'Module containing bug report helper(s).� N� )�__version__)� pyopensslc C s� t �� } | dkrt �� }nj| dkr\d�tjjtjjtjj�}tjj dkr�d� |tjj g�}n(| dkrnt �� }n| dkr�t �� }nd}| |d �S ) a� Return a dict with the Python implementation and version. Provide both the name and the version of the Python implementation currently running. For example, on CPython 3.10.3 it will return {'name': 'CPython', 'version': '3.10.3'}. This function works best on CPython and PyPy: in particular, it probably doesn't work for Jython or IronPython. Future investigation should be done to work out the correct shape of the code for those platforms. �CPython�PyPyz{}.{}.{}�final� �Jython� IronPython�Unknown)�name�version)�platform�python_implementation�python_version�format�sys�pypy_version_info�major�minor�micro�releaselevel�join)�implementation�implementation_version� r �>/opt/alt/python38/lib/python3.8/site-packages/requests/help.py�_implementation"