[issue44773] case_insensitive kwarg in str.replace()

2021-07-29 Thread Nimboss
Change by Nimboss : -- title: case_insensitive kwarg to str.replace() -> case_insensitive kwarg in str.replace() ___ Python tracker <https://bugs.python.org/issu

[issue44773] case_insensitive kwarg to str.replace()

2021-07-29 Thread Nimboss
New submission from Nimboss : Currently str.replace() has 3 arguments: old, new and count. This issue suggests the new addition of another argument called case_insensitive (type bool, defaulted to False) which determines whether to ignore case when replacing said text or not. Currently we