In article <[email protected]>, [email protected] says... > In the REPL, the result of an expression is bound to '_': > > >>> x1 = A(12) > >>> x1 # _ will be bound to the result. > 12 > >>> x1 = 'string' > >>> # At this point, _ is still bound to the object. > >>> 0 # This will bind _ to another object, so the previous object can > be collected. > 'A' instance being collected... > 0
Aha! Thank you. -- https://mail.python.org/mailman/listinfo/python-list
