Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upSupport "bpo-" in Misc/NEWS #1
Merged
Conversation
Doc/tools/extensions/pyspecific.py
Outdated
@@ -253,7 +253,7 @@ def run(self): | |||
text = 'The NEWS file is not available.' | |||
node = nodes.strong(text, text) | |||
return [node] | |||
content = issue_re.sub(r'`\1ssue #\2 <https://bugs.python.org/\2>`__', | |||
content = issue_re.sub(r'`\bpo-\2 <https://bugs.python.org/\2>`__', |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
brettcannon
Feb 10, 2017
Author
Member
That's on purpose as the first capture group is the prefix which doesn't matter. Probably should change the regex to use a non-capture group.
This comment has been minimized.
This comment has been minimized.
Carreau
Feb 10, 2017
Contributor
Sure, you can either you use \1
or insert bpo-
. But here you overwrote half the capture group by only deleting the 1
and not the \
.
This comment has been minimized.
This comment has been minimized.
Make the prefix match non-capturing and fix a bug where a backslash was left into the substitution.
Doc/tools/extensions/pyspecific.py
Outdated
@@ -34,7 +34,7 @@ | |||
|
|||
|
|||
ISSUE_URI = 'https://bugs.python.org/issue%s' | |||
SOURCE_URI = 'https://hg.python.org/cpython/file/3.6/%s' | |||
SOURCE_URI = 'https://github.com/python/cpython/tree/3.6/%s' |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Doc/tools/extensions/pyspecific.py
Outdated
@@ -253,7 +253,7 @@ def run(self): | |||
text = 'The NEWS file is not available.' | |||
node = nodes.strong(text, text) | |||
return [node] | |||
content = issue_re.sub(r'`\1ssue #\2 <https://bugs.python.org/\2>`__', | |||
content = issue_re.sub(r'`bpo-\1 <https://bugs.python.org/\1>`__', |
This comment has been minimized.
This comment has been minimized.
zware
Feb 10, 2017
Member
I'd suggest making it https://bugs.python.org/issue\1
to avoid the redirect through https://www.python.org/sf/
This comment has been minimized.
This comment has been minimized.
Mariatta
referenced
this pull request
in Mariatta/cpython
Feb 12, 2017
Mariatta
referenced
this pull request
in Mariatta/cpython
Feb 12, 2017
Mariatta
referenced
this pull request
in Mariatta/cpython
Feb 12, 2017
Mariatta
added a commit
that referenced
this pull request
Feb 13, 2017
tiran
added a commit
that referenced
this pull request
Aug 28, 2017
* Added support for CAN_ISOTP protocol * Added unit tests for CAN ISOTP * Updated documentation for ISO-TP protocol * Removed trailing whitespace in documentation * Added blurb NEWS.d file * updated Misc/ACKS * Fixed broken unit test that was using isotp const outside of skippable section * Removed dependecy over third party project * Added implementation for getsockname + unit tests * Missing newline at end of ACKS file * Accidentally inserted a type in ACKS file * Followed tiran changes review #1 recommendations * Added spaces after comma
GadgetSteve
added a commit
to GadgetSteve/cpython
that referenced
this pull request
Sep 10, 2017
* Added support for CAN_ISOTP protocol * Added unit tests for CAN ISOTP * Updated documentation for ISO-TP protocol * Removed trailing whitespace in documentation * Added blurb NEWS.d file * updated Misc/ACKS * Fixed broken unit test that was using isotp const outside of skippable section * Removed dependecy over third party project * Added implementation for getsockname + unit tests * Missing newline at end of ACKS file * Accidentally inserted a type in ACKS file * Followed tiran changes review python#1 recommendations * Added spaces after comma
daxlab
added a commit
to daxlab/cpython
that referenced
this pull request
Oct 1, 2017
* Added support for CAN_ISOTP protocol * Added unit tests for CAN ISOTP * Updated documentation for ISO-TP protocol * Removed trailing whitespace in documentation * Added blurb NEWS.d file * updated Misc/ACKS * Fixed broken unit test that was using isotp const outside of skippable section * Removed dependecy over third party project * Added implementation for getsockname + unit tests * Missing newline at end of ACKS file * Accidentally inserted a type in ACKS file * Followed tiran changes review python#1 recommendations * Added spaces after comma
native-api
pushed a commit
to native-api/cpython
that referenced
this pull request
Jun 5, 2018
attilajeges
added a commit
to attilajeges/cpython
that referenced
this pull request
Dec 14, 2019
This is necessary for ZFS systems, which don't support UF_IMMUTABLE.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
brettcannon commentedFeb 10, 2017
No description provided.