Commit b746a9e2 authored by Jeremy Hylton's avatar Jeremy Hylton

Consistent formatting.

parent 5c0f35d5
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
static char cPersistence_doc_string[] = static char cPersistence_doc_string[] =
"Defines Persistent mixin class for persistent objects.\n" "Defines Persistent mixin class for persistent objects.\n"
"\n" "\n"
"$Id: cPersistence.c,v 1.79 2004/03/02 20:22:16 jeremy Exp $\n"; "$Id: cPersistence.c,v 1.80 2004/03/13 07:42:06 jeremy Exp $\n";
#include "cPersistence.h" #include "cPersistence.h"
#include "structmember.h" #include "structmember.h"
...@@ -648,7 +648,7 @@ Per_getattro(cPersistentObject *self, PyObject *name) ...@@ -648,7 +648,7 @@ Per_getattro(cPersistentObject *self, PyObject *name)
goto Done; goto Done;
s = PyString_AS_STRING(name); s = PyString_AS_STRING(name);
if (*s != '_' || unghost_getattr(s)) { if (unghost_getattr(s)) {
if (unghostify(self) < 0) if (unghostify(self) < 0)
goto Done; goto Done;
accessed(self); accessed(self);
...@@ -672,8 +672,7 @@ Per__p_getattr(cPersistentObject *self, PyObject *name) ...@@ -672,8 +672,7 @@ Per__p_getattr(cPersistentObject *self, PyObject *name)
goto Done; goto Done;
s = PyString_AS_STRING(name); s = PyString_AS_STRING(name);
if (*s != '_' || unghost_getattr(s)) if (*s != '_' || unghost_getattr(s)) {
{
if (unghostify(self) < 0) if (unghostify(self) < 0)
goto Done; goto Done;
accessed(self); accessed(self);
...@@ -733,16 +732,14 @@ Per_p_set_or_delattro(cPersistentObject *self, PyObject *name, PyObject *v) ...@@ -733,16 +732,14 @@ Per_p_set_or_delattro(cPersistentObject *self, PyObject *name, PyObject *v)
goto Done; goto Done;
s = PyString_AS_STRING(name); s = PyString_AS_STRING(name);
if (strncmp(s, "_p_", 3) != 0) if (strncmp(s, "_p_", 3)) {
{
if (unghostify(self) < 0) if (unghostify(self) < 0)
goto Done; goto Done;
accessed(self); accessed(self);
result = 0; result = 0;
} }
else else {
{
if (PyObject_GenericSetAttr((PyObject *)self, name, v) < 0) if (PyObject_GenericSetAttr((PyObject *)self, name, v) < 0)
goto Done; goto Done;
result = 1; result = 1;
...@@ -759,7 +756,7 @@ Per__p_setattr(cPersistentObject *self, PyObject *args) ...@@ -759,7 +756,7 @@ Per__p_setattr(cPersistentObject *self, PyObject *args)
PyObject *name, *v, *result; PyObject *name, *v, *result;
int r; int r;
if (! PyArg_ParseTuple(args, "OO:_p_setattr", &name, &v)) if (!PyArg_ParseTuple(args, "OO:_p_setattr", &name, &v))
return NULL; return NULL;
r = Per_p_set_or_delattro(self, name, v); r = Per_p_set_or_delattro(self, name, v);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment