Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/pip/markdown-3.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mnot authored Sep 19, 2023
2 parents 570432e + 9524c64 commit 261e6ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions httplint/syntax/rfc7230.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,11 +205,11 @@ def __str__(self) -> str:
# / %x5D-7E ; ']'-'~'
# / obs-text

ctext = rf"(?: {HTAB} | {SP} | [\x21-\x27] | [\x2A-\x5b] | \x5D-\x7E | {obs_text} )"
ctext = rf"(?: {HTAB} | {SP} | [\x21-\x27] | [\x2A-\x5b] | [\x5D-\x7E] | {obs_text} )"

# comment = "(" *( ctext / quoted-pair / comment ) ")"

comment = rf"(?: \( (?: {ctext} | {quoted_pair} )* \) ) "
comment = rf"(?: \( (?: {ctext} | {quoted_pair} )* \) )"

# Via = 1#( received-protocol RWS received-by [ RWS comment ] )

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ build
pytest
pytest-md
validate-pyproject
MarkupSafe==2.1.1
MarkupSafe==2.1.3
Markdown==3.4.4
types-Markdown

0 comments on commit 261e6ba

Please sign in to comment.