bpo-36167: fix an incorrect capitalization (GH-14482)

This commit is contained in:
avinassh 2019-08-29 11:10:50 +05:30 committed by Ned Deily
parent 465e5d5bcb
commit 3aa48b88c7

View file

@ -659,7 +659,7 @@ How can my code discover the name of an object?
-----------------------------------------------
Generally speaking, it can't, because objects don't really have names.
Essentially, assignment always binds a name to a value; The same is true of
Essentially, assignment always binds a name to a value; the same is true of
``def`` and ``class`` statements, but in that case the value is a
callable. Consider the following code::