Bug report
Bug description:
d = {(1, 2, 3): 'ab'} #Initializing a dictionary
d[(1,2,3)]
>>>'ab' #output of d[(1,2,3)] as expected
d[1,2,3]
>>>'ab' #expected error while executing d[1,2,3] but got the output 'ab'

CPython versions tested on:
3.13
Operating systems tested on:
Windows