<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Objects/stringlib/find.h, branch fix-namedexpr-comment</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 #26765: Moved common code and docstrings for bytes and bytearray methods</title>
<updated>2016-05-04T19:23:26+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2016-05-04T19:23:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=dd40fc3e57da1988bffa35e3aad33fa0a6dda813'/>
<id>dd40fc3e57da1988bffa35e3aad33fa0a6dda813</id>
<content type='text'>
to bytes_methods.c.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
to bytes_methods.c.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject().</title>
<updated>2016-04-13T12:37:23+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2016-04-13T12:37:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=21a663ea2829b6808dd6981904c393332d271f8e'/>
<id>21a663ea2829b6808dd6981904c393332d271f8e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #23573: Increased performance of string search operations (str.find,</title>
<updated>2015-03-24T19:55:47+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2015-03-24T19:55:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d9d769fcdd573ab12b628798288c02dceba53505'/>
<id>d9d769fcdd573ab12b628798288c02dceba53505</id>
<content type='text'>
str.index, str.count, the in operator, str.split, str.partition) with
arguments of different kinds (UCS1, UCS2, UCS4).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
str.index, str.count, the in operator, str.split, str.partition) with
arguments of different kinds (UCS1, UCS2, UCS4).
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #13623: Fix a performance regression introduced by issue #12170 in</title>
<updated>2011-12-18T00:17:41+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@haypocalc.com</email>
</author>
<published>2011-12-18T00:17:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=f8eac00779c4a3c66a85a3737f0977bb54305e05'/>
<id>f8eac00779c4a3c66a85a3737f0977bb54305e05</id>
<content type='text'>
bytes.find() and handle correctly OverflowError (raise the same ValueError than
the error for -1).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
bytes.find() and handle correctly OverflowError (raise the same ValueError than
the error for -1).
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace PyUnicodeObject* by PyObject* where it was irrevelant</title>
<updated>2011-10-23T18:04:37+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@haypocalc.com</email>
</author>
<published>2011-10-23T18:04:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=9db1a8b69f13f884336556b61252f7ca271f2b76'/>
<id>9db1a8b69f13f884336556b61252f7ca271f2b76</id>
<content type='text'>
A Unicode string can now be a PyASCIIObject, PyCompactUnicodeObject or
PyUnicodeObject. Aliasing a PyASCIIObject* or PyCompactUnicodeObject* to
PyUnicodeObject* is wrong
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A Unicode string can now be a PyASCIIObject, PyCompactUnicodeObject or
PyUnicodeObject. Aliasing a PyASCIIObject* or PyCompactUnicodeObject* to
PyUnicodeObject* is wrong
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #12170: The count(), find(), rfind(), index() and rindex() methods</title>
<updated>2011-10-20T21:54:17+00:00</updated>
<author>
<name>Antoine Pitrou</name>
<email>solipsis@pitrou.net</email>
</author>
<published>2011-10-20T21:54:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ac65d96777f1619c2910de82093e4f6f24dedd2f'/>
<id>ac65d96777f1619c2910de82093e4f6f24dedd2f</id>
<content type='text'>
of bytes and bytearray objects now accept an integer between 0 and 255
as their first argument.  Patch by Petri Lehtinen.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
of bytes and bytearray objects now accept an integer between 0 and 255
as their first argument.  Patch by Petri Lehtinen.
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement PEP 393.</title>
<updated>2011-09-28T05:41:54+00:00</updated>
<author>
<name>Martin v. Löwis</name>
<email>martin@v.loewis.de</email>
</author>
<published>2011-09-28T05:41:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d63a3b8beb4a0841cb59fb3515347ccaab34b733'/>
<id>d63a3b8beb4a0841cb59fb3515347ccaab34b733</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828)</title>
<updated>2011-04-20T15:42:50+00:00</updated>
<author>
<name>Jesus Cea</name>
<email>jcea@jcea.es</email>
</author>
<published>2011-04-20T15:42:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=6159ee3cf59b3fd8fcf9818c0a8071362d1ad7c2'/>
<id>6159ee3cf59b3fd8fcf9818c0a8071362d1ad7c2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828)</title>
<updated>2011-04-20T15:09:23+00:00</updated>
<author>
<name>Jesus Cea</name>
<email>jcea@jcea.es</email>
</author>
<published>2011-04-20T15:09:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ac4515063c18157645d135bca8c4cf39542ccd6e'/>
<id>ac4515063c18157645d135bca8c4cf39542ccd6e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merged revisions 77461 via svnmerge from</title>
<updated>2010-01-13T08:07:53+00:00</updated>
<author>
<name>Antoine Pitrou</name>
<email>solipsis@pitrou.net</email>
</author>
<published>2010-01-13T08:07:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=f2c5484f9ee9c964454b2d4a176170042e3beea5'/>
<id>f2c5484f9ee9c964454b2d4a176170042e3beea5</id>
<content type='text'>
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r77461 | antoine.pitrou | 2010-01-13 08:55:48 +0100 (mer., 13 janv. 2010) | 5 lines

  Issue #7622: Improve the split(), rsplit(), splitlines() and replace()
  methods of bytes, bytearray and unicode objects by using a common
  implementation based on stringlib's fast search.  Patch by Florent Xicluna.
........
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r77461 | antoine.pitrou | 2010-01-13 08:55:48 +0100 (mer., 13 janv. 2010) | 5 lines

  Issue #7622: Improve the split(), rsplit(), splitlines() and replace()
  methods of bytes, bytearray and unicode objects by using a common
  implementation based on stringlib's fast search.  Patch by Florent Xicluna.
........
</pre>
</div>
</content>
</entry>
</feed>
