On Dec 16, 9:55 pm, Jean-Michel Pichavant <jeanmic...@sequans.com>
wrote:
> I'd like to illutrate the fact that comparing strings using identity is,
> most of the time, a bad idea. However I'm searching a short example of
> code that yields 2 differents object for the same string content.
>
> Anyone has that kind of code ?

It's quite obvious when they come from different contexts:

>>> def f(): return 'some string'
...
>>> def g(): return 'some string'
...
>>> f() == g()
True
>>> f() is g()
False
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to