Kaydet (Commit) ee0a63be authored tarafından Guido van Rossum's avatar Guido van Rossum

Move 'dict' struct member to end of struct. This ensures binary

compatibility for shared libraries.

*** WARNING -- IF YOU BUILT 1.5.1BETA1, DO A "MAKE CLEAN" ***
üst fb9b7fd5
...@@ -73,8 +73,6 @@ typedef struct _ts { ...@@ -73,8 +73,6 @@ typedef struct _ts {
int ticker; int ticker;
int tracing; int tracing;
PyObject *dict;
PyObject *sys_profilefunc; PyObject *sys_profilefunc;
PyObject *sys_tracefunc; PyObject *sys_tracefunc;
...@@ -86,6 +84,8 @@ typedef struct _ts { ...@@ -86,6 +84,8 @@ typedef struct _ts {
PyObject *exc_value; PyObject *exc_value;
PyObject *exc_traceback; PyObject *exc_traceback;
PyObject *dict;
/* XXX signal handlers should also be here */ /* XXX signal handlers should also be here */
} PyThreadState; } PyThreadState;
......
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