What’s New in Python 3.7
docs.python.org
What’s New in Python 3.7
1–10 of 70 posts
Re: What’s New in Python 3.7
#2Re: What’s New in Python 3.7
#3There are human devs who needed this? Or is this a sign that AI bots are now involved in language design?
Re: What’s New in Python 3.7
#4"More than 255 arguments can now be passed to a function, and a function can now have more than 255 parameters." There are human devs who needed this? Or is this a sign that AI bots are now involved in language design?
Re: What’s New in Python 3.7
#5Switching the default encoding from ASCII to utf-8 sounds like a pretty big change.
Re: What’s New in Python 3.7
#6"More than 255 arguments can now be passed to a function, and a function can now have more than 255 parameters." There are human devs who needed this? Or is this a sign that AI bots are now involved in language design?
Re: What’s New in Python 3.7
#7"More than 255 arguments can now be passed to a function, and a function can now have more than 255 parameters." There are human devs who needed this? Or is this a sign that AI bots are now involved in language design?
Perhaps it could trigger if you do function(*iterable), with a huge iterable?
Re: What’s New in Python 3.7
#8Re: What’s New in Python 3.7
#9Earlier quoted context omitted.
Perhaps it could trigger if you do function(*iterable), with a huge iterable?
I think *iterable would just pass one argument that's a list, not pass each argument individually
Re: What’s New in Python 3.7
#10Earlier quoted context omitted.
Perhaps it could trigger if you do function(*iterable), with a huge iterable?
I think *iterable would just pass one argument that's a list, not pass each argument individually