the documentation in 3.2 says nothing that the replace method of type str should be removed. I also see no reason why anyone should do this.
What has been removed is the replace function in the string module .
Example:
"bla".replace("a", "b")
calls the replace method of type str.
string.replace("bla", "a", "b")
calls the string module replacement function.
, , . - Python. , Python 2.0 (!). Python, , , , - .