diff options
author | Georg Brandl <georg@python.org> | 2011-07-18 08:39:55 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-07-18 08:39:55 (GMT) |
commit | 3a04b4b180f8789944cbb0af007c23857e79dde8 (patch) | |
tree | f0d6937f8edea07f2286303141742ef449c9cfa0 | |
parent | 9737648c7470fa2cf0b57baf1b26b99520f1b61e (diff) | |
download | cpython-3a04b4b180f8789944cbb0af007c23857e79dde8.zip cpython-3a04b4b180f8789944cbb0af007c23857e79dde8.tar.gz cpython-3a04b4b180f8789944cbb0af007c23857e79dde8.tar.bz2 |
Add missing "a".
-rw-r--r-- | Doc/howto/doanddont.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/doanddont.rst b/Doc/howto/doanddont.rst index 2e9e0b8..15aa996 100644 --- a/Doc/howto/doanddont.rst +++ b/Doc/howto/doanddont.rst @@ -113,7 +113,7 @@ from module import name1, name2 This is a "don't" which is much weaker than the previous "don't"s but is still something you should not do if you don't have good reasons to do that. The -reason it is usually bad idea is because you suddenly have an object which lives +reason it is usually a bad idea is because you suddenly have an object which lives in two separate namespaces. When the binding in one namespace changes, the binding in the other will not, so there will be a discrepancy between them. This happens when, for example, one module is reloaded, or changes the definition of |