8000 bpo-37759: Second round of edits to Whatsnew 3.8 by rhettinger · Pull Request #15204 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-37759: Second round of edits to Whatsnew 3.8 #15204

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Aug 12, 2019
Prev Previous commit
PEP 8 nit
  • Loading branch information
rhettinger committed Aug 12, 2019
commit 310ddfbc813b4333a4e7c394f0cc03dc9c4cb417
2 changes: 1 addition & 1 deletion Doc/whatsnew/3.8.rst
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ Other Language Changes
>>> from statistics import mean
>>> mean(data=[10, 20, 90])
40
>>> mean.__code__ = mean.__code__.replace(co_posonlyargcount = 1)
>>> mean.__code__ = mean.__code__.replace(co_posonlyargcount=1)
>>> mean(data=[10, 20, 90])
Traceback (most recent call last):
...
Expand Down
0