| Server IP : 217.160.0.135 / Your IP : 216.73.217.85 Web Server : Apache System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64 User : sws1074145052 ( 1074145052) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib/python3/dist-packages/docutils/parsers/rst/__pycache__/ |
Upload File : |
�
M=&b�Q � � � d Z dZddlZddlZddlmZ ddlmZ G d� de� � Z G d� d � � Z G d
� de � � Z
G d� d
e � � Zd� ZdS )a�
This module defines table parser classes,which parse plaintext-graphic tables
and produce a well-formed data structure suitable for building a CALS table.
:Classes:
- `GridTableParser`: Parse fully-formed tables represented with a grid.
- `SimpleTableParser`: Parse simple tables, delimited by top & bottom
borders.
:Exception class: `TableMarkupError`
:Function:
`update_dict_of_lists()`: Merge two dictionaries containing list values.
�reStructuredText� N)� DataError��strip_combining_charsc � � e Zd ZdZd� ZdS )�TableMarkupErrorz�
Raise if there is any problem with table markup.
The keyword argument `offset` denotes the offset of the problem
from the table's start line.
c �` � |� dd� � | _ t j | g|�R � d S )N�offsetr )�popr
r �__init__)�self�args�kwargss �B/usr/lib/python3/dist-packages/docutils/parsers/rst/tableparser.pyr zTableMarkupError.__init__&