<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Objects/intobject.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>bpo-16055: Fixes incorrect error text for int('1', base=1000) (#6980)</title>
<updated>2018-05-18T23:53:13+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@redhat.com</email>
</author>
<published>2018-05-18T23:53:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d13169fc5ac7572a272cbcff830c3d96ba27cc7c'/>
<id>d13169fc5ac7572a272cbcff830c3d96ba27cc7c</id>
<content type='text'>
Fixes incorrect error text for int('1', base=1000)
and long('1', base=1000).</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes incorrect error text for int('1', base=1000)
and long('1', base=1000).</pre>
</div>
</content>
</entry>
<entry>
<title>consistently use Py_TYPE, Py_REFCNT, and correct initializer macros (#3563)</title>
<updated>2017-09-14T04:20:29+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2017-09-14T04:20:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=a72d15c97f9837f6c9c6bd476a62175c942cc588'/>
<id>a72d15c97f9837f6c9c6bd476a62175c942cc588</id>
<content type='text'>
This no-op change makes 2.7 more consistent with 3.x to ease comparison and backports.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This no-op change makes 2.7 more consistent with 3.x to ease comparison and backports.</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #28998: More APIs now support longs as well as ints.</title>
<updated>2016-12-27T13:09:36+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2016-12-27T13:09:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=994f04dbf576f4ebafb9de2bc6821e15cb0de0ea'/>
<id>994f04dbf576f4ebafb9de2bc6821e15cb0de0ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #24469: Fixed memory leak caused by int subclasses without overridden</title>
<updated>2016-11-29T18:49:14+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2016-11-29T18:49:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=13cc67946b7fc823433af0d1d81b7a3ce6007427'/>
<id>13cc67946b7fc823433af0d1d81b7a3ce6007427</id>
<content type='text'>
tp_free (e.g. C-inherited Cython classes).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
tp_free (e.g. C-inherited Cython classes).
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #28139: Fix messed up indentation</title>
<updated>2016-09-17T07:54:55+00:00</updated>
<author>
<name>Martin Panter</name>
<email>vadmium+py@gmail.com</email>
</author>
<published>2016-09-17T07:54:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ca56dd4767617a2f5e946130de4beb06442a5cd5'/>
<id>ca56dd4767617a2f5e946130de4beb06442a5cd5</id>
<content type='text'>
Also update the classmethod and staticmethod doc strings and comments to
match the RST documentation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also update the classmethod and staticmethod doc strings and comments to
match the RST documentation.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #22463: Backport compiler warning fixes and workarounds</title>
<updated>2016-06-21T23:58:05+00:00</updated>
<author>
<name>Martin Panter</name>
<email>vadmium+py@gmail.com</email>
</author>
<published>2016-06-21T23:58:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=646b528467b171148143980452d2aa4294cbe5c8'/>
<id>646b528467b171148143980452d2aa4294cbe5c8</id>
<content type='text'>
* Set but unused variable in Parser/pgen.c in non-debug builds. Patch by
  Christian Heimes.
* Unused static function in Modules/readline.c. Patch by Georg Brandl.
* main_window unused in Modules/tkappinit.c. Patch by Gregory P. Smith.
* Dead assignment in Modules/_ctypes/cfield.c. Extracted from patch by Brett
  Cannon.
* Expression result unused in PyObject_INIT macro expansions. Based on
  patches by Christian Heimes.
* Load expat_config.h and therefore pyconfig.h before C stdlib headers are
  loaded. This silences pre-processor warnings including '_POSIX_C_SOURCE
  redefined'. Extracted from patch by Christian Heimes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Set but unused variable in Parser/pgen.c in non-debug builds. Patch by
  Christian Heimes.
* Unused static function in Modules/readline.c. Patch by Georg Brandl.
* main_window unused in Modules/tkappinit.c. Patch by Gregory P. Smith.
* Dead assignment in Modules/_ctypes/cfield.c. Extracted from patch by Brett
  Cannon.
* Expression result unused in PyObject_INIT macro expansions. Based on
  patches by Christian Heimes.
* Load expat_config.h and therefore pyconfig.h before C stdlib headers are
  loaded. This silences pre-processor warnings including '_POSIX_C_SOURCE
  redefined'. Extracted from patch by Christian Heimes.
</pre>
</div>
</content>
</entry>
<entry>
<title>remove strange casts</title>
<updated>2014-11-23T18:58:54+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2014-11-23T18:58:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c6b6ab0caaa2a923965f5948aec719627a819e00'/>
<id>c6b6ab0caaa2a923965f5948aec719627a819e00</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #15989: Fix several occurrences of integer overflow</title>
<updated>2013-01-19T10:55:39+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2013-01-19T10:55:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=74f49ab28b91d3c23524356230feb2724ee9b23f'/>
<id>74f49ab28b91d3c23524356230feb2724ee9b23f</id>
<content type='text'>
when result of PyInt_AsLong() or PyLong_AsLong() narrowed
to int without checks.

This is a backport of changesets 13e2e44db99d and 525407d89277.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
when result of PyInt_AsLong() or PyLong_AsLong() narrowed
to int without checks.

This is a backport of changesets 13e2e44db99d and 525407d89277.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #16761: Raise TypeError when int() or long() called with base argument only.</title>
<updated>2012-12-28T07:31:59+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2012-12-28T07:31:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=cf095f8e0f0ed1111995a5b8a8a5ebdb189683f2'/>
<id>cf095f8e0f0ed1111995a5b8a8a5ebdb189683f2</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>
</feed>
