diff options
| author | Gaëtan de Menten <gdementen@gmail.com> | 2010-02-14 21:21:40 +0000 |
|---|---|---|
| committer | Gaëtan de Menten <gdementen@gmail.com> | 2010-02-14 21:21:40 +0000 |
| commit | ded4e1d76b634b94a161bc91a3b4eb9d8777332b (patch) | |
| tree | 506bbae8952047314bd2e576edd04d5060fdc708 /lib/sqlalchemy/cextension | |
| parent | f43ef377289eef8e8ae936723c0c0903e83075e9 (diff) | |
| download | sqlalchemy-ded4e1d76b634b94a161bc91a3b4eb9d8777332b.tar.gz | |
- fix C version of rowproxy pickling so that it pickles to the same format
as the Python version.
- changelog my earlier processor optimization work
Diffstat (limited to 'lib/sqlalchemy/cextension')
| -rw-r--r-- | lib/sqlalchemy/cextension/resultproxy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/cextension/resultproxy.c b/lib/sqlalchemy/cextension/resultproxy.c index 14ea1828e..048d74d74 100644 --- a/lib/sqlalchemy/cextension/resultproxy.c +++ b/lib/sqlalchemy/cextension/resultproxy.c @@ -26,7 +26,7 @@ typedef struct { ****************/ static PyObject * -rowproxy_reconstructor(PyObject *self, PyObject *args) +safe_rowproxy_reconstructor(PyObject *self, PyObject *args) { PyObject *cls, *state, *tmp; BaseRowProxy *obj; @@ -560,7 +560,7 @@ static PyTypeObject BaseRowProxyType = { static PyMethodDef module_methods[] = { - {"rowproxy_reconstructor", rowproxy_reconstructor, METH_VARARGS, + {"safe_rowproxy_reconstructor", safe_rowproxy_reconstructor, METH_VARARGS, "reconstruct a RowProxy instance from its pickled form."}, {NULL, NULL, 0, NULL} /* Sentinel */ }; |
