Change by Julian Gilbey :
--
keywords: +patch
pull_requests: +28595
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/30387
___
Python tracker
<https://bugs.python.org/issu
New submission from Julian Gilbey :
The documentation at
https://docs.python.org/3/c-api/unicode.html?highlight=isalpha#unicode-character-properties
lists a series of macros such as Py_UNICODE_ISSPACE(Py_UNICODE ch). However,
the input type for these macros was changed from Py_UNICODE to
Change by Julian Gilbey :
--
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue44383>
___
___
Python-bugs-list
Julian Gilbey added the comment:
Yes, this is a duplicate. Marking this report as a duplicate. It's a shame that
the other one has a conflict and has been sitting waiting for an update for
over a year :-(
I'd be happy to help if it is of use.
--
resolution: -&
New submission from Julian Gilbey :
With code like the following:
import argparse
parser = argparse.ArgumentParser(
description="Test program",
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
)
parser.add_argument(
"--foo",
help=&q
New submission from Julian Gilbey:
In re.rst, the re.compile documentation says:
Compile a regular expression pattern into a regular expression object, which
can be used for matching using its :func:`match` and :func:`search` methods,
described below.
This results in linking to the