/
lib64
/
python3.9
/
site-packages
/
mercurial
/
__pycache__
/
Upload File
HOME
a �+�bZ � @ s� d dl mZ d dlZd dlZd dlZddlmZ ddlmZm Z m ZmZm Z mZmZmZ ddlmZmZ ejZejZejZejZd.dd�ZG d d � d e�ZG dd� dej�Zd d� Ze�ed�ZG dd� dej�Z dd� Z dd� Z!G dd� dej"�Z#G dd� dej�Z$G dd� de#�Z%e�rDG dd� dej�Z&G dd� dej'ej(�Z(G d d!� d!ej)�Z)G d"d#� d#ej*�Z*G d$d%� d%ej+�Z,g Z-d/d(d)�Z.d0d*d+�Z/d,d-� Z0dS )1� )�absolute_importN� )�_)�encoding�error�httpconnection� keepalive�pycompat�sslutil�urllibcompat�util)� stringutil�urlutilc C s8 | � dd�} | � dd�} | � dd�} |r4| � dd�} | S ) a1 Replace special characters "&", "<" and ">" to HTML-safe sequences. If the optional flag quote is true, the quotation mark character (") is also translated. This is the same as cgi.escape in Python, but always operates on bytes, whereas cgi.escape in Python 3 only works on unicodes. � &s &� <s <� >s >� "s ")�replace)�s�quote� r �3/usr/lib64/python3.9/site-packages/mercurial/url.py�escape&