File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -148,7 +148,8 @@ following functions:
148148
149149 Return ``True `` if *chr * is a valid identifier start per the
150150 `Unicode Standard Annex #31 <https://www.unicode.org/reports/tr31/ >`_,
151- that is, it has the ``XID_Start `` property, ``False `` otherwise. For example::
151+ that is, it has the ``XID_Start `` property. Return ``False `` otherwise.
152+ For example::
152153
153154 >>> unicodedata.isidstart('S')
154155 True
@@ -162,7 +163,8 @@ following functions:
162163
163164 Return ``True `` if *chr * is a valid identifier charcter per the
164165 `Unicode Standard Annex #31 <https://www.unicode.org/reports/tr31/ >`_,
165- that is, it has the ``XID_Continue `` property, ``False `` otherwise. For example::
166+ that is, it has the ``XID_Continue `` property. Return ``False `` otherwise.
167+ For example::
166168
167169 >>> unicodedata.isidcontinue('S')
168170 True
You can’t perform that action at this time.
0 commit comments