| Server IP : 127.0.0.1 / Your IP : 216.73.216.109 Web Server : Apache/2.4.54 (Win64) OpenSSL/1.1.1q PHP/8.1.10 System : Windows NT DESKTOP-E5T4RUN 10.0 build 19045 (Windows 10) AMD64 User : SERVERWEB ( 0) PHP Version : 8.1.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/cygwin64/lib/python3.9/site-packages/requests/__pycache__/ |
Upload File : |
a
��Pe# � @ s� d Z ddlZddlZddlZddlZddlZddlZddlmZ zddl
Z
W n eyb dZ
Y n0 zddlZW n ey� dZY n0 zddl
mZ W n ey� dZdZdZY n0 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.
ZCPythonZPyPyz{}.{}.{}�final� ZJythonZ
IronPython�Unknown)�name�version)�platformZpython_implementationZpython_version�format�sysZpypy_version_info�major�minor�micro�releaselevel�join)�implementationZimplementation_version� r �1/usr/lib/python3.9/site-packages/requests/help.py�_implementation"