<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=iso-8859-1"><meta name=Generator content="Microsoft Word 14 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:SimSun;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:SimSun;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:"\@SimSun";
        panose-1:2 1 6 0 3 1 1 1 1 1;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body lang=EN-US link=blue vlink=purple><div class=WordSection1><p class=MsoNormal><span lang=IS>Although 2.7 has the new buffer interface and memoryview objects, these are widely not accepted in the built in modules.<o:p></o:p></span></p><p class=MsoNormal><span lang=IS>Examples are the structmodule, some of the socketmodule apis, structmodule, etc.<o:p></o:p></span></p><p class=MsoNormal><span lang=IS><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=IS>IMHO this is unfortunate.  For example when doign network io, you would want code like this:<o:p></o:p></span></p><p class=MsoNormal><span lang=IS>Buffer = bytearray(10)<o:p></o:p></span></p><p class=MsoNormal><span lang=IS>Socket.recv_into(Buffer)<o:p></o:p></span></p><p class=MsoNormal><span lang=IS>Header = struct.unpack(&#8222;i&#8220;, memoryview(Buffer)</span>[:4])[0]<o:p></o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=MsoNormal>In other words, you want to minimize coping the data around.  Currently in 2.7 you have to cast the memoryview to str() which copies the data.  In 3.0 you don&#8217;t.<o:p></o:p></p><p class=MsoNormal>Is there any chance of getting changes like these in ?<o:p></o:p></p><p class=MsoNormal>(swapping s# for s* in PyArg_ParseTuple in a few strategic places)<o:p></o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=MsoNormal>My current list of places would be:<o:p></o:p></p><p class=MsoNormal>_strucmodule.c<o:p></o:p></p><p class=MsoNormal>arraymodule.c<o:p></o:p></p><p class=MsoNormal>zlibmodule.c<o:p></o:p></p><p class=MsoNormal>marshal.c<o:p></o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=MsoNormal>audioop.c and imageop.c are probably less important.<o:p></o:p></p><p class=MsoNormal>K<o:p></o:p></p></div></body></html>