projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
465e5d5
)
bpo-36167: fix an incorrect capitalization (GH-14482)
author
avinassh
<avinassh@users.noreply.github.com>
Thu, 29 Aug 2019 05:40:50 +0000
(11:10 +0530)
committer
Ned Deily
<nad@python.org>
Thu, 29 Aug 2019 05:40:50 +0000
(
01:40
-0400)
Doc/faq/programming.rst
patch
|
blob
|
history
diff --git
a/Doc/faq/programming.rst
b/Doc/faq/programming.rst
index a36fa4aefe8864fc30d110bf5f901ecba54bc38d..2ff7236df1dc0e8e312a9cfdd8e6be27390967d4 100644
(file)
--- a/
Doc/faq/programming.rst
+++ b/
Doc/faq/programming.rst
@@
-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;
T
he same is true of
+Essentially, assignment always binds a name to a value;
t
he same is true of
``def`` and ``class`` statements, but in that case the value is a
callable. Consider the following code::