Closed as not planned
Description
Bug report
Bug description:
#
import re
t="""\
x=100;
y=200;
if(x = = y){
std::cout<<"True\n";
}else{
std::cout<<"False\n";
}
"""
t = re.sub( "= =", "==", t) # outputs x = = y
This has worked in all previous versions until I installed 3.13.3
CPython versions tested on:
3.13
Operating systems tested on:
Windows