python-pdfkit icon indicating copy to clipboard operation
python-pdfkit copied to clipboard

BUG: Check for equality, not for identity

Open martin-thoma opened this issue 3 years ago • 0 comments

>>> a = "file"
>>> b = "fi"
>>> c = "le"
>>> a == b+c
True
>>> a is b+c
False

martin-thoma avatar Apr 06 '22 07:04 martin-thoma