<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Objects/sliceobject.c, branch zooba-patch-1</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>[2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)</title>
<updated>2018-07-31T06:09:36+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2018-07-31T06:09:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=48c8bf21f97aeb124dbd48bf2bdec1ab4ebc5202'/>
<id>48c8bf21f97aeb124dbd48bf2bdec1ab4ebc5202</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-34229: Check start and stop of slice object to be long when they are not int in PySlice_GetIndices (GH-8480)</title>
<updated>2018-07-26T16:20:34+00:00</updated>
<author>
<name>Xtreak</name>
<email>tirkarthi@users.noreply.github.com</email>
</author>
<published>2018-07-26T16:20:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=2bea7716093012319b5e6a4260fe802b15031f21'/>
<id>2bea7716093012319b5e6a4260fe802b15031f21</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1531) (#1480)</title>
<updated>2017-05-10T11:20:28+00:00</updated>
<author>
<name>Xiang Zhang</name>
<email>angwerzx@126.com</email>
</author>
<published>2017-05-10T11:20:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=05469fa1c05acf55bdca05db21822ecdd7f6487a'/>
<id>05469fa1c05acf55bdca05db21822ecdd7f6487a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-30255: Clip step in _PySlice_Unpack() (#1429)</title>
<updated>2017-05-03T14:00:12+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2017-05-03T14:00:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=f6a3133972378205baaa6a854d46170d04a2db67'/>
<id>f6a3133972378205baaa6a854d46170d04a2db67</id>
<content type='text'>
In PySlice_IndicesEx, clip the step to [-PY_SSIZE_T_MAX,
PY_SSIZE_T_MAX] rather than [PY_SSIZE_T_MIN, PY_SSIZE_T_MAX].

(cherry picked from commit e6fc7401a92c7b51a80782d8095819b9909a0322)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In PySlice_IndicesEx, clip the step to [-PY_SSIZE_T_MAX,
PY_SSIZE_T_MAX] rather than [PY_SSIZE_T_MIN, PY_SSIZE_T_MAX].

(cherry picked from commit e6fc7401a92c7b51a80782d8095819b9909a0322)</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-30074: Fix compile warnings of _PySlice_Unpack and convert missed (#1154)</title>
<updated>2017-04-15T17:11:12+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2017-04-15T17:11:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=5e79321742cb3af2184d22e2148c6756cade1864'/>
<id>5e79321742cb3af2184d22e2148c6756cade1864</id>
<content type='text'>
PySlice_GetIndicesEx in _ctypes.c.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PySlice_GetIndicesEx in _ctypes.c.
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-27867: Expand the PySlice_GetIndicesEx macro. (#1023) (#1046)</title>
<updated>2017-04-08T08:48:57+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2017-04-08T08:48:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=e41390aca51e4e3eb455cf3b70f5d656a2814db9'/>
<id>e41390aca51e4e3eb455cf3b70f5d656a2814db9</id>
<content type='text'>
(cherry picked from commit b879fe8)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(cherry picked from commit b879fe8)
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #27867: Replaced function PySlice_GetIndicesEx() with a macro.</title>
<updated>2017-01-25T11:22:06+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2017-01-25T11:22:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=3efe32ed48330a121cb0e4ebbd429216eb039fa7'/>
<id>3efe32ed48330a121cb0e4ebbd429216eb039fa7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add gc support to slice (closes #26659)</title>
<updated>2016-04-16T21:47:12+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2016-04-16T21:47:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=414f8b937f1ccab9a493b387fa42529416ea1a08'/>
<id>414f8b937f1ccab9a493b387fa42529416ea1a08</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #14783: Backport changes from 3.2.</title>
<updated>2012-10-08T03:37:54+00:00</updated>
<author>
<name>Chris Jerdonek</name>
<email>chris.jerdonek@gmail.com</email>
</author>
<published>2012-10-08T03:37:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ad4b0001794e47368b0997183b30b1171eab2790'/>
<id>ad4b0001794e47368b0997183b30b1171eab2790</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Untabify C files. Will watch buildbots.</title>
<updated>2010-05-09T14:46:46+00:00</updated>
<author>
<name>Antoine Pitrou</name>
<email>solipsis@pitrou.net</email>
</author>
<published>2010-05-09T14:46:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c83ea137d7e717f764e2f31fc2544f522de7d857'/>
<id>c83ea137d7e717f764e2f31fc2544f522de7d857</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
