Skip to content
This repository was archived by the owner on Nov 3, 2023. It is now read-only.

Commit ae9147d

Browse files
committed
Add support for PEP701
* fstring don't emit tk.STRING in python3.12, reattach the now separate tokens and pass them to Docstring preserving previous behavior. Closes: #646 Signed-off-by: Alfred Wingate <[email protected]>
1 parent 6d5455e commit ae9147d

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

docs/release_notes.rst

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ Release Notes
44
**pydocstyle** version numbers follow the
55
`Semantic Versioning <http://semver.org/>`_ specification.
66

7+
8+
Current development version
9+
---------------------------
10+
11+
Bug Fixes
12+
13+
* Accomodate PEP-701 fixing fstring parsing in python3.12 (#656).
14+
715
6.3.0 - January 17th, 2023
816
--------------------------
917

src/pydocstyle/parser.py

+14
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,20 @@ def parse_docstring(self):
479479
)
480480
self.stream.move()
481481
return docstring
482+
if (sys.version_info.major, sys.version_info.minor) >= (
483+
3,
484+
12,
485+
) and self.current.kind == tk.FSTRING_START:
486+
# Reattach fstring tokens together to deal with PEP 701 in python3.12
487+
value = self.current.value
488+
start = self.current.start[0]
489+
while self.current.kind != tk.FSTRING_END:
490+
self.stream.move()
491+
value += self.current.value
492+
end = self.current.end[0]
493+
docstring = Docstring(value, start, end)
494+
self.stream.move()
495+
return docstring
482496
return None
483497

484498
def parse_decorators(self):

0 commit comments

Comments
 (0)