From 91d6a4f347b6ac232396bf82a4900368ee972c7c Mon Sep 17 00:00:00 2001 From: Daniel Wang Date: Mon, 30 Sep 2024 23:05:36 -0400 Subject: [PATCH 1/2] Add breaking fragment --- doc/whatsnew/fragments/9255.breaking | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 doc/whatsnew/fragments/9255.breaking diff --git a/doc/whatsnew/fragments/9255.breaking b/doc/whatsnew/fragments/9255.breaking new file mode 100644 index 0000000000..305cf4001a --- /dev/null +++ b/doc/whatsnew/fragments/9255.breaking @@ -0,0 +1,9 @@ +Commented out code blocks will no longer emit fixme's, such as the following: +``` +# typical comment # TODO: will not emit! +# if foo: +# bar() # TODO: will not emit! +# baz() +``` + +Refs #9255 From 09f0b3ed53391716970932085d129c7576e9cc56 Mon Sep 17 00:00:00 2001 From: Daniel Wang Date: Tue, 1 Oct 2024 21:12:09 -0400 Subject: [PATCH 2/2] Improve wording Co-authored-by: Pierre Sassoulas --- doc/whatsnew/fragments/9255.breaking | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/doc/whatsnew/fragments/9255.breaking b/doc/whatsnew/fragments/9255.breaking index 305cf4001a..076b96e05c 100644 --- a/doc/whatsnew/fragments/9255.breaking +++ b/doc/whatsnew/fragments/9255.breaking @@ -1,9 +1,3 @@ -Commented out code blocks will no longer emit fixme's, such as the following: -``` -# typical comment # TODO: will not emit! -# if foo: -# bar() # TODO: will not emit! -# baz() -``` +Commented out code blocks such as ``# bar() # TODO: remove dead code`` will no longer emit ``fixme``. Refs #9255