[issue39937] Suggest the usage of Element.iter() instead of iter() in whatsnew

2020-03-13 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- resolution: -> fixed stage: -> resolved status: open -> closed type: -> enhancement ___ Python tracker ___

[issue39937] Suggest the usage of Element.iter() instead of iter() in whatsnew

2020-03-13 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: New changeset 7a5cbc72988aee668816be9d1ef44c0cb4081ff6 by Rahul Kumaresan in branch 'master': bpo-39937: Improve suggestions for removal of getchildren and getiterator in changelog (GH-18937)

[issue39937] Suggest the usage of Element.iter() instead of iter() in whatsnew

2020-03-11 Thread Rahul Kumaresan
New submission from Rahul Kumaresan : In the whatsnew section, under the point which mentions the deprecation of getchildren() and getiterator() through bpo-36543, it is suggested to use iter() instead. Ideally there should be a suggestion to use Element.iter() instead. -- assignee: