<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Modules/_bisectmodule.c, branch misc-acks-comment</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/'/>
<entry>
<title>bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)</title>
<updated>2018-11-27T11:27:31+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2018-11-27T11:27:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=62be74290aca26d16f3f55ece7ff6dad14e60e8d'/>
<id>62be74290aca26d16f3f55ece7ff6dad14e60e8d</id>
<content type='text'>
Fix invalid function cast warnings with gcc 8
for method conventions different from METH_NOARGS, METH_O and
METH_VARARGS excluding Argument Clinic generated code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix invalid function cast warnings with gcc 8
for method conventions different from METH_NOARGS, METH_O and
METH_VARARGS excluding Argument Clinic generated code.
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-34925: Optimize common case for bisect() argument parsing (#9753)</title>
<updated>2018-10-08T15:02:41+00:00</updated>
<author>
<name>Raymond Hettinger</name>
<email>rhettinger@users.noreply.github.com</email>
</author>
<published>2018-10-08T15:02:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=de2e448414530689f2e60e84fd78bdfebb772898'/>
<id>de2e448414530689f2e60e84fd78bdfebb772898</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #28792: Remove aliases from _bisect</title>
<updated>2016-11-24T22:31:59+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2016-11-24T22:31:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=1018fad6a4df3d7fcb0ec715867069044428a759'/>
<id>1018fad6a4df3d7fcb0ec715867069044428a759</id>
<content type='text'>
Remove aliases from the C module. Always implement bisect() and insort()
aliases in bisect.py

Remove also the "# backward compatibility" command, there is no plan to
deprecate nor remove these aliases. When keys are equal, it makes sense to use
bisect.bisect() and bisect.insort().
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove aliases from the C module. Always implement bisect() and insort()
aliases in bisect.py

Remove also the "# backward compatibility" command, there is no plan to
deprecate nor remove these aliases. When keys are equal, it makes sense to use
bisect.bisect() and bisect.insort().
</pre>
</div>
</content>
</entry>
<entry>
<title>The return type of a rich comparison is an int</title>
<updated>2016-02-14T09:41:35+00:00</updated>
<author>
<name>Raymond Hettinger</name>
<email>python@rcn.com</email>
</author>
<published>2016-02-14T09:41:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=b6f17f5210843295ae87c779596acbe6835b36f0'/>
<id>b6f17f5210843295ae87c779596acbe6835b36f0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #19514: Deduplicate some _Py_IDENTIFIER declarations.</title>
<updated>2013-11-07T17:46:53+00:00</updated>
<author>
<name>Martin v. Löwis</name>
<email>martin@v.loewis.de</email>
</author>
<published>2013-11-07T17:46:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=e75fc148136bbef192c5572c14f3abf1f67abc57'/>
<id>e75fc148136bbef192c5572c14f3abf1f67abc57</id>
<content type='text'>
Patch by Andrei Dorian Duma.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Patch by Andrei Dorian Duma.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #14829: Fix bisect and range() indexing with large indices (&gt;= 2 ** 32) under 64-bit Windows.</title>
<updated>2012-05-16T12:39:36+00:00</updated>
<author>
<name>Antoine Pitrou</name>
<email>solipsis@pitrou.net</email>
</author>
<published>2012-05-16T12:39:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=b7d033db783b8ca2e4dfe23e348129ed666b6e2b'/>
<id>b7d033db783b8ca2e4dfe23e348129ed666b6e2b</id>
<content type='text'>
(untested, because of Windows build issues under 3.x)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(untested, because of Windows build issues under 3.x)
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #14829: Fix bisect and range() indexing with large indices (&gt;= 2 ** 32) under 64-bit Windows.</title>
<updated>2012-05-16T12:37:54+00:00</updated>
<author>
<name>Antoine Pitrou</name>
<email>solipsis@pitrou.net</email>
</author>
<published>2012-05-16T12:37:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=a103b96a80f049f68ccf2dd3d5d7858b26a27e94'/>
<id>a103b96a80f049f68ccf2dd3d5d7858b26a27e94</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #13496: Merge from 3.2</title>
<updated>2012-04-15T15:32:04+00:00</updated>
<author>
<name>Mark Dickinson</name>
<email>mdickinson@enthought.com</email>
</author>
<published>2012-04-15T15:32:04+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=da4210f77d2fe10667b8620d46eb9d3c3fd9e613'/>
<id>da4210f77d2fe10667b8620d46eb9d3c3fd9e613</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue 13496: Fix bisect.bisect overflow bug for large collections.</title>
<updated>2012-04-15T15:30:35+00:00</updated>
<author>
<name>Mark Dickinson</name>
<email>mdickinson@enthought.com</email>
</author>
<published>2012-04-15T15:30:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=a13b109bc00487182b13c1d02c03e8910dfb9234'/>
<id>a13b109bc00487182b13c1d02c03e8910dfb9234</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename _Py_identifier to _Py_IDENTIFIER.</title>
<updated>2011-10-14T08:20:37+00:00</updated>
<author>
<name>Martin v. Löwis</name>
<email>martin@v.loewis.de</email>
</author>
<published>2011-10-14T08:20:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=bd928fef428e48084ff29ece0e21d07ad86d0793'/>
<id>bd928fef428e48084ff29ece0e21d07ad86d0793</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
