diff options
author | Gregory P. Smith <greg@krypto.org> | 2020-12-25 04:31:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-25 04:31:18 (GMT) |
commit | 8badadec53cbf9dc049c5b54198c5689481e3f3f (patch) | |
tree | 011a567b5ef851c0fbdaf5fa55af6dbaf18cfc99 /Misc | |
parent | 786d97a66cac48e7a933010367b8993a5b3ab85b (diff) | |
download | cpython-8badadec53cbf9dc049c5b54198c5689481e3f3f.zip cpython-8badadec53cbf9dc049c5b54198c5689481e3f3f.tar.gz cpython-8badadec53cbf9dc049c5b54198c5689481e3f3f.tar.bz2 |
bpo-42727: Fix the NEWS entry .rst (GH-23932)
It was causing CI failures. the offending file came from https://github.com/python/cpython/pull/23917
```
python3 tools/rstlint.py ../Misc/NEWS.d/next/
[2] ../Misc/NEWS.d/next/Library/2020-12-23-19-43-06.bpo-42727.WH3ODh.rst:1: default role used
[2] ../Misc/NEWS.d/next/Library/2020-12-23-19-43-06.bpo-42727.WH3ODh.rst:2: default role used
2 problems with severity 2 found.
Makefile:204: recipe for target 'check' failed
```
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-12-23-19-43-06.bpo-42727.WH3ODh.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-12-23-19-43-06.bpo-42727.WH3ODh.rst b/Misc/NEWS.d/next/Library/2020-12-23-19-43-06.bpo-42727.WH3ODh.rst index a986cb9..c2ef8ee 100644 --- a/Misc/NEWS.d/next/Library/2020-12-23-19-43-06.bpo-42727.WH3ODh.rst +++ b/Misc/NEWS.d/next/Library/2020-12-23-19-43-06.bpo-42727.WH3ODh.rst @@ -1,2 +1,2 @@ -`EnumMeta.__prepare__` now accepts `**kwds` to properly support -`__init_subclass__` +``EnumMeta.__prepare__`` now accepts ``**kwds`` to properly support +``__init_subclass__`` |