<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Modules/socketmodule.c, branch 3.4</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/'/>
<entry>
<title>Issue #24684: socket.socket.getaddrinfo() now calls</title>
<updated>2015-09-11T10:37:30+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-09-11T10:37:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ec1a498a01da2b4df22413ff778529d84111c2ee'/>
<id>ec1a498a01da2b4df22413ff778529d84111c2ee</id>
<content type='text'>
PyUnicode_AsEncodedString() instead of calling the encode() method of the
host, to handle correctly custom string with an encode() method which doesn't
return a byte string. The encoder of the IDNA codec is now called directly
instead of calling the encode() method of the string.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PyUnicode_AsEncodedString() instead of calling the encode() method of the
host, to handle correctly custom string with an encode() method which doesn't
return a byte string. The encoder of the IDNA codec is now called directly
instead of calling the encode() method of the string.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #23834: Fix socket.sendto(), use the C Py_ssize_t type to store the</title>
<updated>2015-04-02T15:16:08+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-02T15:16:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=8e44aa5ae475be3e2944daee4d98ca36e466dd6a'/>
<id>8e44aa5ae475be3e2944daee4d98ca36e466dd6a</id>
<content type='text'>
result of sendto() instead of the C int type.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
result of sendto() instead of the C int type.
</pre>
</div>
</content>
</entry>
<entry>
<title>remove assignment in conditional</title>
<updated>2015-04-01T15:16:40+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2015-04-01T15:16:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=4fd929b431214678184bddc7a5bb5c610dda5485'/>
<id>4fd929b431214678184bddc7a5bb5c610dda5485</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer</title>
<updated>2015-02-16T11:28:22+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2015-02-16T11:28:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=1a1ff29659f068659dea07f1bd67b8fd4331071c'/>
<id>1a1ff29659f068659dea07f1bd67b8fd4331071c</id>
<content type='text'>
overflows.  Added few missed PyErr_NoMemory().
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
overflows.  Added few missed PyErr_NoMemory().
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #22581: Use more "bytes-like object" throughout the docs and comments.</title>
<updated>2014-12-05T20:25:22+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2014-12-05T20:25:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=b757c83ec626442a8804b9417790443bf13b4fc8'/>
<id>b757c83ec626442a8804b9417790443bf13b4fc8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError</title>
<updated>2014-07-26T12:36:55+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-07-26T12:36:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=e254e53c833d39e1e479a16d7976a7726c0c1981'/>
<id>e254e53c833d39e1e479a16d7976a7726c0c1981</id>
<content type='text'>
on closed socket. repr(socket.socket) already works fine.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
on closed socket. repr(socket.socket) already works fine.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo in socket.getaddrinfo() docstring.</title>
<updated>2014-06-30T08:28:40+00:00</updated>
<author>
<name>Berker Peksag</name>
<email>berker.peksag@gmail.com</email>
</author>
<published>2014-06-30T08:28:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=a6ec5ee3c8fcc7ca28db737a0ad60d4d63b116c0'/>
<id>a6ec5ee3c8fcc7ca28db737a0ad60d4d63b116c0</id>
<content type='text'>
Reported by Krishna Kumar Thakur on docs@.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reported by Krishna Kumar Thakur on docs@.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #10141, Issue 20065: Changed #if to take CAN_RAW into account.</title>
<updated>2014-03-21T11:44:32+00:00</updated>
<author>
<name>Vinay Sajip</name>
<email>vinay_sajip@yahoo.co.uk</email>
</author>
<published>2014-03-21T11:44:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ed6783f315c0efe49f981b820332fc5067eace36'/>
<id>ed6783f315c0efe49f981b820332fc5067eace36</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #10141: updated new usages of AF_CAN to be in #ifdef AF_CAN rather than #ifdef HAVE_LINUX_CAN_H to allow compilation on older Linuxes.</title>
<updated>2014-03-20T12:42:42+00:00</updated>
<author>
<name>Vinay Sajip</name>
<email>vinay_sajip@yahoo.co.uk</email>
</author>
<published>2014-03-20T12:42:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ecfc98c67b2571f0d212eb91efb556181c12dc92'/>
<id>ecfc98c67b2571f0d212eb91efb556181c12dc92</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #20065: socketmodule: Fix build error when AF_CAN is defined without the</title>
<updated>2014-02-08T21:54:48+00:00</updated>
<author>
<name>Charles-François Natali</name>
<email>cf.natali@gmail.com</email>
</author>
<published>2014-02-08T21:54:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=4025ac7549c5d32a59d99c8b438e141c1ad55832'/>
<id>4025ac7549c5d32a59d99c8b438e141c1ad55832</id>
<content type='text'>
proper CAN headers.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
proper CAN headers.
</pre>
</div>
</content>
</entry>
</feed>
