<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
B
    ´ÊÑaƒ  ã               @   sP   d dl mZmZ d dlZd dlmZmZ d dlmZ eeƒG dd„ de	ƒƒZ
dS )é    )Úabsolute_importÚunicode_literalsN)ÚABCMetaÚabstractmethod)Úadd_metaclassc               @   s<   e Zd ZdZdd„ Zedd„ ƒZedd„ ƒZedd	„ ƒZ	d
S )Ú	Activatorz8Generates an activate script for the virtual environmentc             C   s&   |j dkrtj t ¡ ¡n|j | _dS )z…Create a new activator generator.

        :param options: the parsed options as defined within :meth:`add_parser_arguments`
        Ú.N)ÚpromptÚosÚpathÚbasenameÚgetcwdZflag_prompt)ÚselfÚoptions© r   úP/opt/alt/python37/lib/python3.7/site-packages/virtualenv/activation/activator.pyÚ__init__   s    zActivator.__init__c             C   s   dS )zÊCheck if the activation script is supported in the given interpreter.

        :param interpreter: the interpreter we need to support
        :return: ``True`` if supported, ``False`` otherwise
        Tr   )ÚclsÚinterpreterr   r   r   Úsupports   s    zActivator.supportsc             C   s   dS )z·
        Add CLI arguments for this activation script.

        :param parser: the CLI parser
        :param interpreter: the interpreter this virtual environment is based of
        Nr   )r   Úparserr   r   r   r   Úadd_parser_arguments   s    zActivator.add_parser_argumentsc             C   s   t ‚dS )zÊGenerate the activate script for the given creator.

        :param creator: the creator (based of :class:`virtualenv.create.creator.Creator`) we used to create this         virtual environment
        N)ÚNotImplementedError)r   Zcreatorr   r   r   Úgenerate&   s    zActivator.generateN)
Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   Úclassmethodr   r   r   r   r   r   r   r   r   	   s
   		r   )Ú
__future__r   r   r
   Úabcr   r   Zsixr   Úobjectr   r   r   r   r   Ú<module>   s
   