call by/pass by

まぁ、Java のメソッド呼び出しを call by reference とは言わんでしょうなぁ。
ちなみに、PythonJava の場合とほぼ同じだけど、Tutorial で call by value だと書いてある。

arguments are passed using call by value (where the value is always an object reference, not the value of the object)

で、FAQ では pass by assignment とか書いてあったり。

Remember that arguments are passed by assignment in Python.