관리-도구
편집 파일: help.cpython-311.pyc
� �Re� � � � d Z ddlmZ ddlZddlZddlZddlZddlmZ ddlm Z ddl mZ dZ ddlmZ n # e$ r dZY nw xY w dd lmZ ddlZddlZn# e$ r dZdZdZY nw xY wd � Zd� Zd� Zed k r e� � dS dS )z'Module containing bug report helper(s).� )�print_functionN)�idna)�urllib3� )�__version__)�chardet)� pyopensslc �� � t j � � } | dk rt j � � }n�| dk rst j j �dt j j �dt j j ��}t j j dk r&d� |t j j g� � }n6| dk rt j � � }n| dk rt j � � }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 2.7.5 it will return {'name': 'CPython', 'version': '2.7.5'}. 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�PyPy�.�final� �Jython� IronPython�Unknown)�name�version) �platform�python_implementation�python_version�sys�pypy_version_info�major�minor�micro�releaselevel�join)�implementation�implementation_versions ��/builddir/build/BUILDROOT/alt-python311-pip-21.3.1-3.el8.x86_64/opt/alt/python311/lib/python3.11/site-packages/pip/_vendor/requests/help.py�_implementationr"