8000 Clean up comma usage in Doc/library/functions.rst by Adminixtrator · Pull Request #27083 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Clean up comma usage in Doc/library/functions.rst #27083

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 15 commits into from
Jul 19, 2021
Prev Previous commit
Next Next commit
s/,/;/
  • Loading branch information
ambv authored Jul 19, 2021
commit e20614d0ccde51218c4e600fc4e7381e466e79a9
2 changes: 1 addition & 1 deletion Doc/library/functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1497,7 +1497,7 @@ are always available. They are listed here in alphabetical order.

Return a string containing a printable representation of an object. For many
types, this function makes an attempt to return a string that would yield an
object with the same value when passed to :func:`eval`, otherwise, the
object with the same value when passed to :func:`eval`; otherwise, the
representation is a string enclosed in angle brackets that contains the name
of the type of the object together with additional information often
including the name and address of the object. A class can control what this
Expand Down
0