mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
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" ***
This commit is contained in:
parent
fb9b7fd5ee
commit
ee0a63bec5
1 changed files with 2 additions and 2 deletions
|
@ -73,8 +73,6 @@ typedef struct _ts {
|
|||
int ticker;
|
||||
int tracing;
|
||||
|
||||
PyObject *dict;
|
||||
|
||||
PyObject *sys_profilefunc;
|
||||
PyObject *sys_tracefunc;
|
||||
|
||||
|
@ -86,6 +84,8 @@ typedef struct _ts {
|
|||
PyObject *exc_value;
|
||||
PyObject *exc_traceback;
|
||||
|
||||
PyObject *dict;
|
||||
|
||||
/* XXX signal handlers should also be here */
|
||||
|
||||
} PyThreadState;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue