I have an sqlalchemy query that returns a tuple. I pass this tuple to a function, and since it\'s an immutable type, a new instance of the tuple is created in the called functio
Python passes references to objects by value. So you dont need to worry about it.