diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2011-12-09 22:41:19 (GMT) |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2011-12-09 22:41:19 (GMT) |
commit | 0e686cbb7d3dcc216a051f3e4cc807983ead44f4 (patch) | |
tree | fce8bef13c56e8d7cd05679a6c6299bcf2a2304f /Modules | |
parent | 432259feea221d0ab41a40f3a81224515d04e10b (diff) | |
download | cpython-0e686cbb7d3dcc216a051f3e4cc807983ead44f4.zip cpython-0e686cbb7d3dcc216a051f3e4cc807983ead44f4.tar.gz cpython-0e686cbb7d3dcc216a051f3e4cc807983ead44f4.tar.bz2 |
Fix docstring typo.
Diffstat (limited to 'Modules')
-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 31c4f39..641e283 100644 --- a/Modules/arraymodule.c +++ b/Modules/arraymodule.c @@ -2543,7 +2543,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\ |