pool.id uses ObjectIdentifier(connection)
as the ID but that's not unique.
#1849
Labels
ObjectIdentifier(connection)
as the ID but that's not unique.
#1849
ObjectIdentifier(something)
is not unique. It's only unique at any given point in time. But it is not unique across the lifetime of a program. It prints the allocation address and after freeing one object, it will be available again to the next.For example see how each of the 100
Class()
instances has the same address/ObjectIdentifierThe text was updated successfully, but these errors were encountered: