diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2011-12-09 23:40:27 +0100 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2011-12-09 23:40:27 +0100 |
commit | b918bdc92c96a16cd83dfa431e0ab192fb1a6cc7 (patch) | |
tree | ba9ff677ab87c7bcd79c5a4bb63d280310327083 | |
parent | 77cd2585509a9d9b5a4050464548d79f882f410c (diff) | |
download | cpython-git-b918bdc92c96a16cd83dfa431e0ab192fb1a6cc7.tar.gz |
Fix docstring typo.
-rw-r--r-- | Modules/arraymodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c index 1602e4883d..a860f57cef 100644 --- a/Modules/arraymodule.c +++ b/Modules/arraymodule.c @@ -2050,7 +2050,7 @@ PyDoc_STRVAR(arraytype_doc, \n\ Return a new array whose items are restricted by typecode, and\n\ initialized from the optional initializer value, which must be a list,\n\ -string. or iterable over elements of the appropriate type.\n\ +string or iterable over elements of the appropriate type.\n\ \n\ Arrays represent basic values and behave very much like lists, except\n\ the type of objects stored in them is constrained.\n\ |