[issue25236] str.maketrans wrong description for optional 3rd parameter

2015-09-25 Thread Brian O'Neill
Brian O'Neill added the comment: Closed as this is a actually true of maketrans. -- resolution: -> not a bug status: open -> closed ___ Python tracker <http://bugs.python.

[issue25236] str.maketrans wrong description for optional 3rd parameter

2015-09-25 Thread Brian O'Neill
New submission from Brian O'Neill: The doc says "If there is a third argument, it must be a string, whose characters will be mapped to None in the result." The characters of the optional third argument get mapped to '', of course, not to None. -- assigne