<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Include/stringobject.h, branch v2.3.6</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>Use appropriate macros not the deprecated DL_IMPORT/DL_EXPORT macros</title>
<updated>2003-07-01T20:15:21+00:00</updated>
<author>
<name>Neal Norwitz</name>
<email>nnorwitz@gmail.com</email>
</author>
<published>2003-07-01T20:15:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=21d896cfa1646a1da4e0ead57db9defc2ade397c'/>
<id>21d896cfa1646a1da4e0ead57db9defc2ade397c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use Py_GCC_ATTRIBUTE instead of __attribute__.  Compilers other than GCC</title>
<updated>2002-09-15T14:09:54+00:00</updated>
<author>
<name>Neil Schemenauer</name>
<email>nascheme@enme.ucalgary.ca</email>
</author>
<published>2002-09-15T14:09:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=96aa0acef021f77d6e5b861201ccd952aa6f6469'/>
<id>96aa0acef021f77d6e5b861201ccd952aa6f6469</id>
<content type='text'>
might use __attribute__ in other ways (e.g. CodeWarrior).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
might use __attribute__ in other ways (e.g. CodeWarrior).
</pre>
</div>
</content>
</entry>
<entry>
<title>SF patch 576101, by Oren Tirosh: alternative implementation of</title>
<updated>2002-08-19T21:43:18+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2002-08-19T21:43:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=45ec02aed14685c353e55841b5acbc0dadee76f8'/>
<id>45ec02aed14685c353e55841b5acbc0dadee76f8</id>
<content type='text'>
interning.  I modified Oren's patch significantly, but the basic idea
and most of the implementation is unchanged.  Interned strings created
with PyString_InternInPlace() are now mortal, and you must keep a
reference to the resulting string around; use the new function
PyString_InternImmortal() to create immortal interned strings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
interning.  I modified Oren's patch significantly, but the basic idea
and most of the implementation is unchanged.  Interned strings created
with PyString_InternInPlace() are now mortal, and you must keep a
reference to the resulting string around; use the new function
PyString_InternImmortal() to create immortal interned strings.
</pre>
</div>
</content>
</entry>
<entry>
<title>Patch #505705: Remove eval in pickle and cPickle.</title>
<updated>2002-08-14T07:46:28+00:00</updated>
<author>
<name>Martin v. Löwis</name>
<email>martin@v.loewis.de</email>
</author>
<published>2002-08-14T07:46:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=8a8da798a5a35bb387575d696799be29c4eaa0d3'/>
<id>8a8da798a5a35bb387575d696799be29c4eaa0d3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Excise DL_EXPORT from Include.</title>
<updated>2002-08-12T07:21:58+00:00</updated>
<author>
<name>Mark Hammond</name>
<email>mhammond@skippinet.com.au</email>
</author>
<published>2002-08-12T07:21:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=91a681debf9ffec155d0aff8a0bb5f965f592e16'/>
<id>91a681debf9ffec155d0aff8a0bb5f965f592e16</id>
<content type='text'>
Thanks to Skip Montanaro and Kalle Svensson for the patches.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Thanks to Skip Montanaro and Kalle Svensson for the patches.
</pre>
</div>
</content>
</entry>
<entry>
<title>- A new type object, 'string', is added.  This is a common base type</title>
<updated>2002-05-24T19:01:59+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2002-05-24T19:01:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=cacfc07d083286e80b6f86939d466e186f7ea3c0'/>
<id>cacfc07d083286e80b6f86939d466e186f7ea3c0</id>
<content type='text'>
  for 'str' and 'unicode', and can be used instead of
  types.StringTypes, e.g. to test whether something is "a string":
  isinstance(x, string) is True for Unicode and 8-bit strings.  This
  is an abstract base class and cannot be instantiated directly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  for 'str' and 'unicode', and can be used instead of
  types.StringTypes, e.g. to test whether something is "a string":
  isinstance(x, string) is True for Unicode and 8-bit strings.  This
  is an abstract base class and cannot be instantiated directly.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols.</title>
<updated>2002-03-29T03:29:08+00:00</updated>
<author>
<name>Tim Peters</name>
<email>tim.peters@gmail.com</email>
</author>
<published>2002-03-29T03:29:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=1f7df3595a0ddc5ef545d686bbb2933b11b7c8ce'/>
<id>1f7df3595a0ddc5ef545d686bbb2933b11b7c8ce</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add function attributes that allow GCC to check the arguments of printf-like</title>
<updated>2001-10-23T02:21:22+00:00</updated>
<author>
<name>Neil Schemenauer</name>
<email>nascheme@enme.ucalgary.ca</email>
</author>
<published>2001-10-23T02:21:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=90b689076a6dcb55dcac6c5efbc9e4aa793e6c72'/>
<id>90b689076a6dcb55dcac6c5efbc9e4aa793e6c72</id>
<content type='text'>
functions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
functions.
</pre>
</div>
</content>
</entry>
<entry>
<title>More on SF bug [#460020] bug or feature: unicode() and subclasses.</title>
<updated>2001-09-11T01:41:59+00:00</updated>
<author>
<name>Tim Peters</name>
<email>tim.peters@gmail.com</email>
</author>
<published>2001-09-11T01:41:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=5a49ade70e19a76aa252cd596accf79930765f31'/>
<id>5a49ade70e19a76aa252cd596accf79930765f31</id>
<content type='text'>
Repaired str(i) to return a genuine string when i is an instance of a str
subclass.  New PyString_CheckExact() macro.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Repaired str(i) to return a genuine string when i is an instance of a str
subclass.  New PyString_CheckExact() macro.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make the Py&lt;type&gt;_Check() macro use PyObject_TypeCheck().</title>
<updated>2001-08-30T03:08:07+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2001-08-30T03:08:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=5eef77a21be8a7895419cc84e8bf5554ca908b54'/>
<id>5eef77a21be8a7895419cc84e8bf5554ca908b54</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
