From: Tim Peters Date: Tue, 5 Jun 2001 04:43:26 +0000 (+0000) Subject: Make it possible to find the use of tp_as_buffer here with a global search. X-Git-Tag: v2.2a3~1616 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b870c752537ebb3e1aad4a8636f962d3b90669eb;p=thirdparty%2FPython%2Fcpython.git Make it possible to find the use of tp_as_buffer here with a global search. (Just a change to a comment) --- diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c index edc2f0bec343..de90da90e830 100644 --- a/Modules/arraymodule.c +++ b/Modules/arraymodule.c @@ -1542,7 +1542,7 @@ statichere PyTypeObject Arraytype = { 0, /* tp_str */ 0, /* tp_getattro */ 0, /* tp_setattro */ - &array_as_buffer, /* tp_as _buffer*/ + &array_as_buffer, /* tp_as_buffer*/ Py_TPFLAGS_DEFAULT, /* tp_flags */ arraytype_doc, /* tp_doc */ 0, /* tp_traverse */