[issue44907] examples code output do not macth the current version 3.9

2021-08-13 Thread meowmeowcat
meowmeowcat added the comment: Thanks! Confirmed with Python 3.9.2. I will open a PR for fixing this. -- nosy: +meowmeowmeowcat ___ Python tracker ___

[issue44907] examples code output do not macth the current version 3.9

2021-08-12 Thread 杨青
New submission from 杨青 : https://docs.python.org/3/tutorial/controlflow.html I got like this following: TypeError: function() got multiple values for argument 'a' not: TypeError: function() got multiple values for keyword argument 'a' >>> def function(a): ... pass ... >>> function(0, a=0) T