<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<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 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:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 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;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
span.EmailStyle18
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@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 style='color:#1F497D'>Not forgetggin the StringI object in cStringIO.<o:p></o:p></span></p><p class=MsoNormal><span style='color:#1F497D'>IMHO, not accepting buffers by these objects can be consided a bug, that needs fixing.<o:p></o:p></span></p><p class=MsoNormal><span style='color:#1F497D'>K<o:p></o:p></span></p><p class=MsoNormal><span style='color:#1F497D'><o:p>&nbsp;</o:p></span></p><div><div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm'><p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>From:</span></b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> python-dev-bounces+kristjan=ccpgames.com@python.org [mailto:python-dev-bounces+kristjan=ccpgames.com@python.org] <b>On Behalf Of </b>Kristján Valur Jónsson<br><b>Sent:</b> Wednesday, October 27, 2010 10:13<br><b>To:</b> Python-Dev (python-dev@python.org)<br><b>Subject:</b> [Python-Dev] new buffer in python2.7<o:p></o:p></span></p></div></div><p class=MsoNormal><o:p>&nbsp;</o:p></p><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.&nbsp; 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.&nbsp; Currently in 2.7 you have to cast the memoryview to str() which copies the data.&nbsp; 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>