[issue11476] StreamHandler code broken by change of parameter name

2011-03-18 Thread follower
follower added the comment: I don't think it would be unreasonable to add the old name back in temporarily and use whichever parameter is supplied--this change has obviously broken code in the process. But for future situations I think changes like this shouldn't happen without a deprecation

[issue11476] StreamHandler code broken by change of parameter name

2011-03-18 Thread Vinay Sajip
Vinay Sajip added the comment: It's a formal parameter name, in general passed by position rather than keyword. Anyway, it seems a bit late to change it back now. -- ___ Python tracker ___

[issue11476] StreamHandler code broken by change of parameter name

2011-03-18 Thread Éric Araujo
Éric Araujo added the comment: Is it okay to change a public parameter name without deprecation process? -- nosy: +eric.araujo ___ Python tracker ___ ___

[issue11476] StreamHandler code broken by change of parameter name

2011-03-12 Thread Vinay Sajip
Changes by Vinay Sajip : -- assignee: docs@python -> vinay.sajip nosy: +vinay.sajip resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue11476] StreamHandler code broken by change of parameter name

2011-03-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6d56d2c63a04 by Vinay Sajip in branch '2.7': Fixes issue #11476: StreamHandler parameter name change documented. http://hg.python.org/cpython/rev/6d56d2c63a04 -- nosy: +python-dev ___ Python tracker

[issue11476] StreamHandler code broken by change of parameter name

2011-03-12 Thread follower
New submission from follower : The following change broke pre-existing code that used "strm" as the parameter name (as documented http://docs.python.org/release/2.6.6/library/logging.html#streamhandler): http://hg.python.org/cpython/diff/7391436d8a74/Lib/logging/__init__.py The parameter name