<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/lib/sqlalchemy/cextension/processors.c, branch pr/63</title>
<subtitle>github.com: zzzeek/sqlalchemy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/'/>
<entry>
<title>happy new year (see #2645)</title>
<updated>2013-01-02T00:08:19+00:00</updated>
<author>
<name>Diana Clarke</name>
<email>diana.joan.clarke@gmail.com</email>
</author>
<published>2013-01-02T00:08:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=24c238ac32f530a33ab4eb4f8290e0877627814a'/>
<id>24c238ac32f530a33ab4eb4f8290e0877627814a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- add new C extension "utils", so far includes distill_params</title>
<updated>2012-08-07T19:23:11+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2012-08-07T19:23:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=819ec8e13f03297a7af2fb5d7db5f742a5a1357d'/>
<id>819ec8e13f03297a7af2fb5d7db5f742a5a1357d</id>
<content type='text'>
- repair test_processors which wasn't hitting the python functions
- add another suite to test_processors that does distill_params
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- repair test_processors which wasn't hitting the python functions
- add another suite to test_processors that does distill_params
</pre>
</div>
</content>
</entry>
<entry>
<title>- [bug] Fixed bug in C extensions whereby</title>
<updated>2012-03-14T03:38:30+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2012-03-14T03:38:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=bf57355feeb6f04d33ad778709f2fb39ad699aee'/>
<id>bf57355feeb6f04d33ad778709f2fb39ad699aee</id>
<content type='text'>
string format would not be applied to a
Numeric value returned as integer; this
affected primarily SQLite which does
not maintain numeric scale settings.
[ticket:2432]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
string format would not be applied to a
Numeric value returned as integer; this
affected primarily SQLite which does
not maintain numeric scale settings.
[ticket:2432]
</pre>
</div>
</content>
</entry>
<entry>
<title>o null check PyObject_Repr results</title>
<updated>2012-01-24T05:40:09+00:00</updated>
<author>
<name>Philip Jenvey</name>
<email>pjenvey@underboss.org</email>
</author>
<published>2012-01-24T05:40:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=37628c2468d88f3d3ad67c0495897786df1cacb6'/>
<id>37628c2468d88f3d3ad67c0495897786df1cacb6</id>
<content type='text'>
o limit size of strings passed to PyErr_Format
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
o limit size of strings passed to PyErr_Format
</pre>
</div>
</content>
</entry>
<entry>
<title>- [bug] Improved error messages when a non-string</title>
<updated>2012-01-22T17:11:13+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2012-01-22T17:11:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=959d7cbe33ee2e39e2a43b6e7a9c1a750664d569'/>
<id>959d7cbe33ee2e39e2a43b6e7a9c1a750664d569</id>
<content type='text'>
or invalid string is passed to any of the
date/time processors used by SQLite, including
C and Python versions.  [ticket:2382]
- changed the import model of processors.py so that we can
get at the pure python versions and C versions simultaneously
in tests.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
or invalid string is passed to any of the
date/time processors used by SQLite, including
C and Python versions.  [ticket:2382]
- changed the import model of processors.py so that we can
get at the pure python versions and C versions simultaneously
in tests.
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed a small potential memory leak in UnicodeResultProcessor (for some weird</title>
<updated>2010-11-27T21:27:42+00:00</updated>
<author>
<name>Gaëtan de Menten</name>
<email>gdementen@gmail.com</email>
</author>
<published>2010-11-27T21:27:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=20418096d5862ed40f22b6c7b7cc53dd212bbd21'/>
<id>20418096d5862ed40f22b6c7b7cc53dd212bbd21</id>
<content type='text'>
reason, it didn't actually leak in my tests) by providing a dealloc method to
the type, and added a test to ensure it stays that way. Closes #1981.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
reason, it didn't actually leak in my tests) by providing a dealloc method to
the type, and added a test to ensure it stays that way. Closes #1981.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix memory leaks in the cprocessors DecimalResultProcessor, including tests.  [ticket:1978]</title>
<updated>2010-11-19T22:44:39+00:00</updated>
<author>
<name>Taavi Burns</name>
<email>taavi.burns@gmail.com</email>
</author>
<published>2010-11-19T22:44:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=f19d7e5b972e60c843acb3389e8ae07eb6043818'/>
<id>f19d7e5b972e60c843acb3389e8ae07eb6043818</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Hopefully fix C extension on python2.4 (ticket #1781), however I can't test it</title>
<updated>2010-04-26T19:16:23+00:00</updated>
<author>
<name>Gaëtan de Menten</name>
<email>gdementen@gmail.com</email>
</author>
<published>2010-04-26T19:16:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=9f45612c63a723fb94be8ce3489973c1235a62d6'/>
<id>9f45612c63a723fb94be8ce3489973c1235a62d6</id>
<content type='text'>
currently.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
currently.
</pre>
</div>
</content>
</entry>
<entry>
<title>support scale argument for the C implementation of the decimal processor</title>
<updated>2010-02-28T20:39:49+00:00</updated>
<author>
<name>Gaëtan de Menten</name>
<email>gdementen@gmail.com</email>
</author>
<published>2010-02-28T20:39:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=08f2c2c19a2f66eaf3c243bd1db7ace82f0e1286'/>
<id>08f2c2c19a2f66eaf3c243bd1db7ace82f0e1286</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed a huge bug in the C version of the unicode processor</title>
<updated>2010-02-14T20:55:06+00:00</updated>
<author>
<name>Gaëtan de Menten</name>
<email>gdementen@gmail.com</email>
</author>
<published>2010-02-14T20:55:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=f43ef377289eef8e8ae936723c0c0903e83075e9'/>
<id>f43ef377289eef8e8ae936723c0c0903e83075e9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
