diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c index bb0d72b6e0850fd28f7cca5c368a60b88c92ec7a..76a3a65644126e94373f68ae934aa25c7361e3bb 100644 --- a/Modules/arraymodule.c +++ b/Modules/arraymodule.c @@ -2619,7 +2619,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\ diff --git a/Python/_warnings.c b/Python/_warnings.c index a494dd9a3c721a75fb58effc362d70d04e850ef0..458e346aa3a45730e0d8c872f83fd3a96d2447ef 100644 --- a/Python/_warnings.c +++ b/Python/_warnings.c @@ -895,7 +895,6 @@ create_filter(PyObject *category, const char *action) static PyObject * init_filters(void) { - /* Don't silence DeprecationWarning if -3 was used. */ PyObject *filters = PyList_New(5); unsigned int pos = 0; /* Post-incremented in each use. */ unsigned int x;