summaryrefslogtreecommitdiff
path: root/pyparsing/core.py
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2022-02-15 00:28:29 -0600
committerptmcg <ptmcg@austin.rr.com>2022-02-15 00:28:29 -0600
commit1812d239f23e1504ec6734f1e59086693ee42d7c (patch)
tree8c7fed0cd5970954ca3fe8a309acfd58935bc5a7 /pyparsing/core.py
parent2206f2b8442add926d2061b1abd0a5007e59953e (diff)
downloadpyparsing-git-1812d239f23e1504ec6734f1e59086693ee42d7c.tar.gz
Clean up dump() examples in docstrings
Diffstat (limited to 'pyparsing/core.py')
-rw-r--r--pyparsing/core.py32
1 files changed, 16 insertions, 16 deletions
diff --git a/pyparsing/core.py b/pyparsing/core.py
index 152f80a..fdf6eef 100644
--- a/pyparsing/core.py
+++ b/pyparsing/core.py
@@ -5026,20 +5026,20 @@ class SkipTo(ParseElementEnhance):
prints::
['101', 'Critical', 'Intermittent system crash', '6']
- - days_open: 6
- - desc: Intermittent system crash
- - issue_num: 101
- - sev: Critical
+ - days_open: '6'
+ - desc: 'Intermittent system crash'
+ - issue_num: '101'
+ - sev: 'Critical'
['94', 'Cosmetic', "Spelling error on Login ('log|n')", '14']
- - days_open: 14
- - desc: Spelling error on Login ('log|n')
- - issue_num: 94
- - sev: Cosmetic
+ - days_open: '14'
+ - desc: "Spelling error on Login ('log|n')"
+ - issue_num: '94'
+ - sev: 'Cosmetic'
['79', 'Minor', 'System slow when running too many reports', '47']
- - days_open: 47
- - desc: System slow when running too many reports
- - issue_num: 79
- - sev: Minor
+ - days_open: '47'
+ - desc: 'System slow when running too many reports'
+ - issue_num: '79'
+ - sev: 'Minor'
"""
def __init__(
@@ -5497,10 +5497,10 @@ class Dict(TokenConverter):
['shape', 'SQUARE', 'posn', 'upper left', 'color', 'light blue', 'texture', 'burlap']
[['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'light blue'], ['texture', 'burlap']]
- - color: light blue
- - posn: upper left
- - shape: SQUARE
- - texture: burlap
+ - color: 'light blue'
+ - posn: 'upper left'
+ - shape: 'SQUARE'
+ - texture: 'burlap'
SQUARE
{'color': 'light blue', 'posn': 'upper left', 'texture': 'burlap', 'shape': 'SQUARE'}