summaryrefslogtreecommitdiffstats
path: root/Modules/arraymodule.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-06-05 04:43:26 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-06-05 04:43:26 (GMT)
commitb870c752537ebb3e1aad4a8636f962d3b90669eb (patch)
treec22773224a04f3260f8c34313672c2c74b790767 /Modules/arraymodule.c
parent88382696f48244e8dbb30cfcf1882b57cb019fc0 (diff)
downloadcpython-b870c752537ebb3e1aad4a8636f962d3b90669eb.zip
cpython-b870c752537ebb3e1aad4a8636f962d3b90669eb.tar.gz
cpython-b870c752537ebb3e1aad4a8636f962d3b90669eb.tar.bz2
Make it possible to find the use of tp_as_buffer here with a global search.
(Just a change to a comment)
Diffstat (limited to 'Modules/arraymodule.c')
-rw-r--r--Modules/arraymodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c
index edc2f0b..de90da9 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 */