Commit 31f5c423 authored by Shane Hathaway's avatar Shane Hathaway

Fixed incorrect curly brace matching. This is what was breaking ZClasses.

parent 0a41a647
...@@ -166,8 +166,9 @@ persistent_id_call(persistent_id *self, PyObject *args, PyObject *kwargs) ...@@ -166,8 +166,9 @@ persistent_id_call(persistent_id *self, PyObject *args, PyObject *kwargs)
goto not_persistent; goto not_persistent;
} }
} else else
goto not_persistent; goto not_persistent;
}
UNLESS (oid=PyObject_GetAttr(object, py__p_oid)) UNLESS (oid=PyObject_GetAttr(object, py__p_oid))
{ {
...@@ -318,7 +319,7 @@ void ...@@ -318,7 +319,7 @@ void
initcoptimizations(void) initcoptimizations(void)
{ {
PyObject *m, *d; PyObject *m, *d;
char *rev="$Revision: 1.11 $"; char *rev="$Revision: 1.12 $";
#define make_string(S) if (! (py_ ## S=PyString_FromString(#S))) return #define make_string(S) if (! (py_ ## S=PyString_FromString(#S))) return
make_string(_p_oid); make_string(_p_oid);
......
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