8000 [3.7] bpo-39869: Fix typo in 'Instance objects' section. (GH-18889) by miss-islington · Pull Request #18900 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.7] bpo-39869: Fix typo in 'Instance objects' section. (GH-18889) #18900

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 1 commit into from
Mar 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
bpo-39869: Fix typo in 'Instance objects' section. (GH-18889)
(cherry picked from commit e5e5632)

Co-authored-by: Antoine <43954001+awecx@users.noreply.github.com>
  • Loading branch information
awecx authored and miss-islington committed Mar 10, 2020
commit b1bd874ceb585c2c4348797358d54bfa5c083adf
2 changes: 1 addition & 1 deletion Doc/tutorial/classes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ Instance Objects

Now what can we do with instance objects? The only operations understood by
instance objects are attribute references. There are two kinds of valid
attribute names, data attributes and methods.
attribute names: data attributes and methods.

*data attributes* correspond to "instance variables" in Smalltalk, and to "data
members" in C++. Data attributes need not be declared; like local variables,
Expand Down
0