Opened 12 years ago

Closed 12 years ago

#17178 closed Uncategorized (needsinfo)

Using default argument in models.Model when primary_key=True crashes python

Reported by: araneae@… Owned by: nobody
Component: Database layer (models, ORM) Version: 1.3
Severity: Release blocker Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I have the following in my models.py:

pk = models.CharField(max_length=36, primary_key=True, default=pkgen)

where pkgen() is a function that generates pk.

No matter what I supply the default argument with, in fields where primary_key=True, python crashes.
It does not crash when a default argument is supplied to non-primary key fields. 

This is the report my os gives me. Obviously there is no python traceback since python crashes:

Process:         Python [11452]
Path:            /System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
Identifier:      Python
Version:         ??? (???)
Code Type:       X86-64 (Native)
Parent Process:  Python [11451]

Date/Time:       2011-11-08 10:41:02.524 -0500
OS Version:      Mac OS X 10.7.1 (11B26)
Report Version:  9

Interval Since Last Report:          1545380 sec
Crashes Since Last Report:           13
Per-App Crashes Since Last Report:   10
Anonymous UUID:                      5DB99EDC-087F-4ED4-9DE0-FCF529F57722

Crashed Thread:  1

Exception Type:  EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x000000010863efbc

VM Regions Near 0x10863efbc:
    __LINKEDIT             0000000108638000-000000010863e000 [   24K] r--/rwx SM=COW  /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_ctypes.so
--> STACK GUARD            000000010863e000-000000010863f000 [    4K] ---/rwx SM=NUL  stack guard for thread 1
    Stack                  000000010863f000-00000001086c1000 [  520K] rw-/rwx SM=COW  thread 1

Application Specific Information:
objc[11452]: garbage collection is OFF

Thread 0:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	0x00007fff8cce5df2 __select + 10
1   time.so                       	0x0000000107c23030 0x107c22000 + 4144
2   org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
3   org.python.python             	0x0000000107796df7 0x10770c000 + 568823
4   org.python.python             	0x0000000107793e0a PyEval_EvalFrameEx + 14008
5   org.python.python             	0x0000000107796df7 0x10770c000 + 568823
6   org.python.python             	0x0000000107793e0a PyEval_EvalFrameEx + 14008
7   org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
8   org.python.python             	0x0000000107796e6c 0x10770c000 + 568940
9   org.python.python             	0x0000000107793e0a PyEval_EvalFrameEx + 14008
10  org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
11  org.python.python             	0x0000000107734abf 0x10770c000 + 166591
12  org.python.python             	0x0000000107713d32 PyObject_Call + 97
13  org.python.python             	0x00000001077945ec PyEval_EvalFrameEx + 16026
14  org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
15  org.python.python             	0x0000000107734abf 0x10770c000 + 166591
16  org.python.python             	0x0000000107713d32 PyObject_Call + 97
17  org.python.python             	0x00000001077945ec PyEval_EvalFrameEx + 16026
18  org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
19  org.python.python             	0x0000000107734abf 0x10770c000 + 166591
20  org.python.python             	0x0000000107713d32 PyObject_Call + 97
21  org.python.python             	0x00000001077945ec PyEval_EvalFrameEx + 16026
22  org.python.python             	0x0000000107796df7 0x10770c000 + 568823
23  org.python.python             	0x0000000107793e0a PyEval_EvalFrameEx + 14008
24  org.python.python             	0x0000000107796df7 0x10770c000 + 568823
25  org.python.python             	0x0000000107793e0a PyEval_EvalFrameEx + 14008
26  org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
27  org.python.python             	0x0000000107796e6c 0x10770c000 + 568940
28  org.python.python             	0x0000000107793e0a PyEval_EvalFrameEx + 14008
29  org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
30  org.python.python             	0x0000000107796d4d PyEval_EvalCode + 54
31  org.python.python             	0x00000001077ae08f 0x10770c000 + 663695
32  org.python.python             	0x00000001077ae14f PyRun_FileExFlags + 157
33  org.python.python             	0x00000001077af2a2 PyRun_SimpleFileExFlags + 392
34  org.python.python             	0x00000001077bf2af Py_Main + 2715
35  org.python.python             	0x0000000107706e88 0x107706000 + 3720

Thread 1 Crashed:
0   libsystem_c.dylib             	0x00007fff92f3dbce szone_malloc_should_clear + 27
1   libsystem_c.dylib             	0x00007fff92f733c8 malloc_zone_malloc + 77
2   libsystem_c.dylib             	0x00007fff92f741a4 malloc + 44
3   org.python.python             	0x00000001077c0591 _PyObject_GC_Malloc + 37
4   org.python.python             	0x00000001077c0681 _PyObject_GC_NewVar + 39
5   org.python.python             	0x0000000107733f1b PyFrame_New + 406
6   org.python.python             	0x000000010779656d PyEval_EvalCodeEx + 97
7   org.python.python             	0x0000000107734abf 0x10770c000 + 166591
8   org.python.python             	0x0000000107713d32 PyObject_Call + 97
9   org.python.python             	0x00000001077143f3 0x10770c000 + 33779
10  org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
11  org.python.python             	0x0000000107726eda 0x10770c000 + 110298
12  org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
13  org.python.python             	0x000000010774725e PyObject_SetAttr + 175
14  org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
15  org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
16  org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
17  org.python.python             	0x0000000107734abf 0x10770c000 + 166591
18  org.python.python             	0x0000000107713d32 PyObject_Call + 97
19  org.python.python             	0x00000001077143f3 0x10770c000 + 33779
20  org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
21  org.python.python             	0x0000000107726eda 0x10770c000 + 110298
22  org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
23  org.python.python             	0x000000010774725e PyObject_SetAttr + 175
24  org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
25  org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
26  org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
27  org.python.python             	0x0000000107734abf 0x10770c000 + 166591
28  org.python.python             	0x0000000107713d32 PyObject_Call + 97
29  org.python.python             	0x00000001077143f3 0x10770c000 + 33779
30  org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
31  org.python.python             	0x0000000107726eda 0x10770c000 + 110298
32  org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
33  org.python.python             	0x000000010774725e PyObject_SetAttr + 175
34  org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
35  org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
36  org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
37  org.python.python             	0x0000000107734abf 0x10770c000 + 166591
38  org.python.python             	0x0000000107713d32 PyObject_Call + 97
39  org.python.python             	0x00000001077143f3 0x10770c000 + 33779
40  org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
41  org.python.python             	0x0000000107726eda 0x10770c000 + 110298
42  org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
43  org.python.python             	0x000000010774725e PyObject_SetAttr + 175
44  org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
45  org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
46  org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
47  org.python.python             	0x0000000107734abf 0x10770c000 + 166591
48  org.python.python             	0x0000000107713d32 PyObject_Call + 97
49  org.python.python             	0x00000001077143f3 0x10770c000 + 33779
50  org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
51  org.python.python             	0x0000000107726eda 0x10770c000 + 110298
52  org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
53  org.python.python             	0x000000010774725e PyObject_SetAttr + 175
54  org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
55  org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
56  org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
57  org.python.python             	0x0000000107734abf 0x10770c000 + 166591
58  org.python.python             	0x0000000107713d32 PyObject_Call + 97
59  org.python.python             	0x00000001077143f3 0x10770c000 + 33779
60  org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
61  org.python.python             	0x0000000107726eda 0x10770c000 + 110298
62  org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
63  org.python.python             	0x000000010774725e PyObject_SetAttr + 175
64  org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
65  org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
66  org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
67  org.python.python             	0x0000000107734abf 0x10770c000 + 166591
68  org.python.python             	0x0000000107713d32 PyObject_Call + 97
69  org.python.python             	0x00000001077143f3 0x10770c000 + 33779
70  org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
71  org.python.python             	0x0000000107726eda 0x10770c000 + 110298
72  org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
73  org.python.python             	0x000000010774725e PyObject_SetAttr + 175
74  org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
75  org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
76  org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
77  org.python.python             	0x0000000107734abf 0x10770c000 + 166591
78  org.python.python             	0x0000000107713d32 PyObject_Call + 97
79  org.python.python             	0x00000001077143f3 0x10770c000 + 33779
80  org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
81  org.python.python             	0x0000000107726eda 0x10770c000 + 110298
82  org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
83  org.python.python             	0x000000010774725e PyObject_SetAttr + 175
84  org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
85  org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
86  org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
87  org.python.python             	0x0000000107734abf 0x10770c000 + 166591
88  org.python.python             	0x0000000107713d32 PyObject_Call + 97
89  org.python.python             	0x00000001077143f3 0x10770c000 + 33779
90  org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
91  org.python.python             	0x0000000107726eda 0x10770c000 + 110298
92  org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
93  org.python.python             	0x000000010774725e PyObject_SetAttr + 175
94  org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
95  org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
96  org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
97  org.python.python             	0x0000000107734abf 0x10770c000 + 166591
98  org.python.python             	0x0000000107713d32 PyObject_Call + 97
99  org.python.python             	0x00000001077143f3 0x10770c000 + 33779
100 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
101 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
102 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
103 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
104 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
105 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
106 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
107 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
108 org.python.python             	0x0000000107713d32 PyObject_Call + 97
109 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
110 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
111 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
112 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
113 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
114 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
115 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
116 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
117 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
118 org.python.python             	0x0000000107713d32 PyObject_Call + 97
119 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
120 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
121 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
122 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
123 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
124 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
125 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
126 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
127 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
128 org.python.python             	0x0000000107713d32 PyObject_Call + 97
129 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
130 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
131 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
132 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
133 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
134 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
135 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
136 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
137 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
138 org.python.python             	0x0000000107713d32 PyObject_Call + 97
139 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
140 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
141 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
142 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
143 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
144 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
145 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
146 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
147 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
148 org.python.python             	0x0000000107713d32 PyObject_Call + 97
149 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
150 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
151 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
152 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
153 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
154 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
155 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
156 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
157 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
158 org.python.python             	0x0000000107713d32 PyObject_Call + 97
159 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
160 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
161 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
162 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
163 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
164 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
165 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
166 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
167 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
168 org.python.python             	0x0000000107713d32 PyObject_Call + 97
169 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
170 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
171 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
172 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
173 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
174 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
175 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
176 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
177 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
178 org.python.python             	0x0000000107713d32 PyObject_Call + 97
179 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
180 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
181 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
182 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
183 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
184 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
185 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
186 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
187 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
188 org.python.python             	0x0000000107713d32 PyObject_Call + 97
189 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
190 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
191 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
192 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
193 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
194 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
195 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
196 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
197 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
198 org.python.python             	0x0000000107713d32 PyObject_Call + 97
199 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
200 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
201 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
202 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
203 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
204 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
205 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
206 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
207 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
208 org.python.python             	0x0000000107713d32 PyObject_Call + 97
209 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
210 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
211 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
212 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
213 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
214 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
215 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
216 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
217 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
218 org.python.python             	0x0000000107713d32 PyObject_Call + 97
219 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
220 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
221 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
222 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
223 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
224 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
225 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
226 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
227 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
228 org.python.python             	0x0000000107713d32 PyObject_Call + 97
229 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
230 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
231 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
232 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
233 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
234 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
235 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
236 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
237 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
238 org.python.python             	0x0000000107713d32 PyObject_Call + 97
239 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
240 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
241 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
242 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
243 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
244 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
245 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
246 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
247 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
248 org.python.python             	0x0000000107713d32 PyObject_Call + 97
249 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
250 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
251 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
252 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
253 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
254 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
255 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
256 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
257 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
258 org.python.python             	0x0000000107713d32 PyObject_Call + 97
259 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
260 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
261 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
262 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
263 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
264 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
265 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
266 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
267 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
268 org.python.python             	0x0000000107713d32 PyObject_Call + 97
269 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
270 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
271 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
272 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
273 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
274 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
275 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
276 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
277 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
278 org.python.python             	0x0000000107713d32 PyObject_Call + 97
279 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
280 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
281 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
282 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
283 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
284 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
285 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
286 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
287 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
288 org.python.python             	0x0000000107713d32 PyObject_Call + 97
289 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
290 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
291 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
292 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
293 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
294 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
295 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
296 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
297 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
298 org.python.python             	0x0000000107713d32 PyObject_Call + 97
299 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
300 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
301 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
302 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
303 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
304 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
305 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
306 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
307 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
308 org.python.python             	0x0000000107713d32 PyObject_Call + 97
309 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
310 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
311 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
312 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
313 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
314 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
315 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
316 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
317 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
318 org.python.python             	0x0000000107713d32 PyObject_Call + 97
319 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
320 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
321 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
322 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
323 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
324 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
325 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
326 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
327 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
328 org.python.python             	0x0000000107713d32 PyObject_Call + 97
329 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
330 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
331 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
332 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
333 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
334 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
335 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
336 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
337 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
338 org.python.python             	0x0000000107713d32 PyObject_Call + 97
339 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
340 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
341 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
342 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
343 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
344 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
345 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
346 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
347 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
348 org.python.python             	0x0000000107713d32 PyObject_Call + 97
349 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
350 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
351 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
352 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
353 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
354 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
355 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
356 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
357 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
358 org.python.python             	0x0000000107713d32 PyObject_Call + 97
359 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
360 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
361 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
362 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
363 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
364 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
365 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
366 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
367 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
368 org.python.python             	0x0000000107713d32 PyObject_Call + 97
369 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
370 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
371 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
372 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
373 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
374 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
375 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
376 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
377 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
378 org.python.python             	0x0000000107713d32 PyObject_Call + 97
379 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
380 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
381 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
382 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
383 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
384 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
385 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
386 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
387 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
388 org.python.python             	0x0000000107713d32 PyObject_Call + 97
389 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
390 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
391 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
392 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
393 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
394 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
395 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
396 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
397 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
398 org.python.python             	0x0000000107713d32 PyObject_Call + 97
399 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
400 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
401 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
402 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
403 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
404 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
405 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
406 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
407 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
408 org.python.python             	0x0000000107713d32 PyObject_Call + 97
409 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
410 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
411 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
412 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
413 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
414 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
415 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
416 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
417 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
418 org.python.python             	0x0000000107713d32 PyObject_Call + 97
419 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
420 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
421 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
422 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
423 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
424 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
425 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
426 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
427 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
428 org.python.python             	0x0000000107713d32 PyObject_Call + 97
429 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
430 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
431 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
432 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
433 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
434 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
435 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
436 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
437 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
438 org.python.python             	0x0000000107713d32 PyObject_Call + 97
439 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
440 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
441 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
442 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
443 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
444 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
445 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
446 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
447 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
448 org.python.python             	0x0000000107713d32 PyObject_Call + 97
449 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
450 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
451 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
452 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
453 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
454 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
455 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
456 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
457 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
458 org.python.python             	0x0000000107713d32 PyObject_Call + 97
459 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
460 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
461 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
462 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
463 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
464 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
465 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
466 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
467 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
468 org.python.python             	0x0000000107713d32 PyObject_Call + 97
469 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
470 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
471 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
472 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
473 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
474 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
475 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
476 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
477 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
478 org.python.python             	0x0000000107713d32 PyObject_Call + 97
479 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
480 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
481 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
482 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
483 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
484 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
485 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
486 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
487 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
488 org.python.python             	0x0000000107713d32 PyObject_Call + 97
489 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
490 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
491 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
492 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
493 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
494 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
495 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
496 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
497 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
498 org.python.python             	0x0000000107713d32 PyObject_Call + 97
499 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
500 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
501 org.python.python             	0x0000000107726eda 0x10770c000 + 110298
502 org.python.python             	0x0000000107746e96 _PyObject_GenericSetAttrWithDict + 325
503 org.python.python             	0x000000010774725e PyObject_SetAttr + 175
504 org.python.python             	0x000000010778e3cd 0x10770c000 + 533453
505 org.python.python             	0x0000000107793d77 PyEval_EvalFrameEx + 13861
506 org.python.python             	0x0000000107796cd8 PyEval_EvalCodeEx + 1996
507 org.python.python             	0x0000000107734abf 0x10770c000 + 166591
508 org.python.python             	0x0000000107713d32 PyObject_Call + 97
509 org.python.python             	0x00000001077143f3 0x10770c000 + 33779
510 org.python.python             	0x00000001077147f4 PyObject_CallFunction + 185
511 org.python.python             	0x0000000107726eda 0x10770c000 + 110298

Thread 1 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x00000000000001d0  rcx: 0x0000000000000180  rdx: 0x0000000000000000
  rdi: 0x000000010770a000  rsi: 0x00000000000001d0  rbp: 0x000000010863f080  rsp: 0x000000010863ef90
   r8: 0x0000000000000002   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000003
  r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x000000010770a000  r15: 0x0000000107914e90
  rip: 0x00007fff92f3dbce  rfl: 0x0000000000010283  cr2: 0x000000010863efbc
Logical CPU: 4

Binary Images:
       0x107706000 -        0x107706fff  org.python.python (2.7.1 - 2.7.1) <E2C46621-158F-349B-9131-263E8958B23A> /System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
       0x10770c000 -        0x107827ff7  org.python.python (2.7.1 - 2.7.1) <A7E34EB5-24D2-3B8F-A26B-4A5B28CD2C60> /System/Library/Frameworks/Python.framework/Versions/2.7/Python
       0x1078ec000 -        0x1078effff  strop.so (??? - ???) <A317730F-EDDF-3998-8A22-0E632B3E67A4> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/strop.so
       0x1078f4000 -        0x1078f7fff  operator.so (??? - ???) <59A152D0-52ED-354C-9C2D-D7390E3EC216> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/operator.so
       0x107bb0000 -        0x107bb1fff  _functools.so (??? - ???) <D4679747-9993-34F6-B702-3946FA5BF171> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_functools.so
       0x107bb5000 -        0x107bb6fff  _locale.so (??? - ???) <FCAE62F7-D07F-3F5F-8057-18224582F344> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_locale.so
       0x107bba000 -        0x107bbefff  _struct.so (??? - ???) <A871A47E-0BF6-3A21-BF66-A5438C54B237> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_struct.so
       0x107c04000 -        0x107c0aff7  _socket.so (??? - ???) <CB2B2DF1-46C2-3491-A737-4522C807F5A2> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_socket.so
       0x107c12000 -        0x107c16fff  _ssl.so (??? - ???) <50FC05D5-0434-3054-9C09-CA8923FED0C0> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_ssl.so
       0x107c1c000 -        0x107c1dfff  cStringIO.so (??? - ???) <AE5A2A12-8E57-3FE2-B998-C175083B27F7> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cStringIO.so
       0x107c22000 -        0x107c23fff  time.so (??? - ???) <F9DAD023-92A8-3953-8CCD-6C584000B28B> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/time.so
       0x107c29000 -        0x107c2cfff  _collections.so (??? - ???) <62C1B5B7-654D-397A-8840-7EBB907DBCA1> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_collections.so
       0x107c32000 -        0x107c38fff  itertools.so (??? - ???) <7C8350B9-8DD3-377A-A5C1-1103A6C955A6> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/itertools.so
       0x107c41000 -        0x107c41fff  _bisect.so (??? - ???) <CD57DCA1-74B4-37F8-B338-ABDDB1750F22> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_bisect.so
       0x107c45000 -        0x107c46fff  _heapq.so (??? - ???) <A3448C7E-3268-32A5-B4C5-859372FFA7E6> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_heapq.so
       0x107c8b000 -        0x107c8dff7  binascii.so (??? - ???) <9B353DAC-B0E8-3B4B-91A1-50F6F86AA928> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/binascii.so
       0x107c91000 -        0x107c91fff  _scproxy.so (??? - ???) <F392F576-344C-3CCB-B93C-E11205241E1D> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_scproxy.so
       0x107c95000 -        0x107ca0ff7  datetime.so (??? - ???) <9EC1E3BD-3BD3-3B39-AE19-448CCEEA747A> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/datetime.so
       0x107d96000 -        0x107d9bfff  math.so (??? - ???) <BC93F501-541B-3BA8-B1D7-2644AAD6D6CE> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/math.so
       0x107e61000 -        0x107e62fff  _hashlib.so (??? - ???) <C6196B8C-5451-3875-BCD9-2942C6A32FCF> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_hashlib.so
       0x107e66000 -        0x107e67ff7  _random.so (??? - ???) <3C7A7C17-1698-32D0-BF09-F50A19F75E4B> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_random.so
       0x107eab000 -        0x107eb7fff  cPickle.so (??? - ???) <FE1D948F-998C-350E-8002-224D3DCDE8B5> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cPickle.so
       0x107ebd000 -        0x107ebffff  select.so (??? - ???) <FEC6A324-8D3E-3439-9315-BC2AF15A0514> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/select.so
       0x107f45000 -        0x107f46fff  fcntl.so (??? - ???) <D2F4AAAE-3C27-3134-84AE-021647AEB1C4> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/fcntl.so
       0x10800a000 -        0x10800ffff  array.so (??? - ???) <177F1D09-ACEE-3E39-8F1E-3EE8BA8A7AC6> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/array.so
       0x108115000 -        0x108115fff  grp.so (??? - ???) <563EC9A6-F38F-3518-9BBB-912E9F01FDA1> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/grp.so
       0x108119000 -        0x10811afff  termios.so (??? - ???) <578DA44F-17E3-3343-982F-BB543CBB49F1> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/termios.so
       0x10815f000 -        0x108168fff  _sqlite3.so (??? - ???) <4F97C26B-1A2D-33D9-A7B4-C791FA3F645B> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_sqlite3.so
       0x1082f2000 -        0x1082f6fff  _json.so (??? - ???) <A8E3EEA8-354B-35C6-A3C5-653928D7419D> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_json.so
       0x1082fb000 -        0x1082fdfff  zlib.so (??? - ???) <81E54FCE-EEAC-3E97-BB05-1143EB6AECA6> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/zlib.so
       0x108582000 -        0x108593fff  _io.so (??? - ???) <5451CA4B-98A0-3F70-9322-DBE6B7D93CF1> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_io.so
       0x108622000 -        0x108633fff  _ctypes.so (??? - ???) <2D2AE6AF-704A-3CBB-954B-33BA49B78254> /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_ctypes.so
    0x7fff67306000 -     0x7fff6733aac7  dyld (195.5 - ???) <4A6E2B28-C7A2-3528-ADB7-4076B9836041> /usr/lib/dyld
    0x7fff87e95000 -     0x7fff87ea7ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
    0x7fff891ff000 -     0x7fff893d2ff7  com.apple.CoreFoundation (6.7 - 635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff899e9000 -     0x7fff89a37ff7  libauto.dylib (??? - ???) <F0004B88-CA01-37D0-A77F-6651C4EC7D8E> /usr/lib/libauto.dylib
    0x7fff89acb000 -     0x7fff89acffff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
    0x7fff89f68000 -     0x7fff89f71fff  libnotify.dylib (80.0.0 - compatibility 1.0.0) <BD08553D-8088-38A8-8007-CF5C0B8F0404> /usr/lib/system/libnotify.dylib
    0x7fff8a4ac000 -     0x7fff8a4b1ff7  libsystem_network.dylib (??? - ???) <4ABCEEF3-A3F9-3E06-9682-CE00F17138B7> /usr/lib/system/libsystem_network.dylib
    0x7fff8b30e000 -     0x7fff8b319ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
    0x7fff8c8d1000 -     0x7fff8c8d2fff  libsystem_sandbox.dylib (??? - ???) <8D14139B-B671-35F4-9E5A-023B4C523C38> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff8cad9000 -     0x7fff8cbe5fef  libcrypto.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <3AD29F8D-E3BC-3F49-A438-2C8AAB71DC99> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8cccf000 -     0x7fff8cceffff  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8e07e000 -     0x7fff8e082fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
    0x7fff8e091000 -     0x7fff8e093fff  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <4C3BFBC7-E592-3939-B376-1C2E2D7C5389> /usr/lib/system/libquarantine.dylib
    0x7fff8e13c000 -     0x7fff8e1b1ff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
    0x7fff8e4fa000 -     0x7fff8e4fbff7  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <C6C49FB7-1892-32E4-86B5-25AD165131AA> /usr/lib/system/libremovefile.dylib
    0x7fff8ed5f000 -     0x7fff8ed66fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
    0x7fff8fab7000 -     0x7fff8fbbafff  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <ED5E84C6-646D-3B70-81D6-7AF957BEB217> /usr/lib/libsqlite3.dylib
    0x7fff8fbbb000 -     0x7fff8fbbcfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
    0x7fff90341000 -     0x7fff9035eff7  libxpc.dylib (77.16.0 - compatibility 1.0.0) <0A4B4775-29A9-30D6-956B-3BE1DBF98090> /usr/lib/system/libxpc.dylib
    0x7fff9035f000 -     0x7fff90369ff7  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <39EF04F2-7F0C-3435-B785-BF283727FFBD> /usr/lib/system/liblaunch.dylib
    0x7fff9036a000 -     0x7fff9036bfff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff90434000 -     0x7fff90442fff  libdispatch.dylib (187.5.0 - compatibility 1.0.0) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
    0x7fff90443000 -     0x7fff9047ffff  libsystem_info.dylib (??? - ???) <BC49C624-1DAB-3A37-890F-6EFD46538424> /usr/lib/system/libsystem_info.dylib
    0x7fff90da5000 -     0x7fff90df0fff  com.apple.SystemConfiguration (1.11 - 1.11) <0B02FEC4-C36E-32CB-8004-2214B6793AE8> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff91f08000 -     0x7fff91f0dfff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
    0x7fff91f0e000 -     0x7fff91f13fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
    0x7fff91f14000 -     0x7fff91f15fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <718A135F-6349-354A-85D5-430B128EFD57> /usr/lib/system/libdnsinfo.dylib
    0x7fff91f16000 -     0x7fff91f16fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
    0x7fff91f3d000 -     0x7fff91f6afe7  libSystem.B.dylib (159.0.0 - compatibility 1.0.0) <7B4D685D-939C-3ABE-8780-77A1889E0DE9> /usr/lib/libSystem.B.dylib
    0x7fff92357000 -     0x7fff92358ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
    0x7fff9249c000 -     0x7fff924d5fe7  libssl.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <D634E4B6-672F-3F68-8B6F-C5028151A5B4> /usr/lib/libssl.0.9.8.dylib
    0x7fff92c64000 -     0x7fff92ca6ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
    0x7fff92ed3000 -     0x7fff92fb0fef  libsystem_c.dylib (763.11.0 - compatibility 1.0.0) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
    0x7fff930b3000 -     0x7fff930b9ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
    0x7fff930ba000 -     0x7fff930c2fff  libsystem_dnssd.dylib (??? - ???) <7749128E-D0C5-3832-861C-BC9913F774FA> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff930c3000 -     0x7fff930c9fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
    0x7fff930e7000 -     0x7fff932e9fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <82DCB94B-3819-3CC3-BC16-2AACA7F64F8A> /usr/lib/libicucore.A.dylib
    0x7fff932ea000 -     0x7fff932ebfff  libffi.dylib (??? - ???) <DB96CC4B-0D38-3102-80AA-91DDE9AF3886> /usr/lib/libffi.dylib
    0x7fff93c93000 -     0x7fff93d77def  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <C5F2392D-B481-3A9D-91BE-3D039FFF4DEC> /usr/lib/libobjc.A.dylib
    0x7fff94125000 -     0x7fff94198fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
    0x7fff94199000 -     0x7fff9419bfff  com.apple.TrustEvaluationAgent (2.0 - 1) <80AFB5D8-5CC4-3A38-83B9-A7DF5820031A> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 39727
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=60.4M resident=35.6M(59%) swapped_out_or_unallocated=24.8M(41%)
Writable regions: Total=67.7M written=18.6M(27%) resident=24.2M(36%) swapped_out=0K(0%) unallocated=43.5M(64%)
 
REGION TYPE                      VIRTUAL
===========                      =======
MALLOC                             58.6M
MALLOC guard page                    48K
SQLite page cache                    96K
STACK GUARD                        56.0M
Stack                              8712K
VM_ALLOCATE                           8K
__DATA                             1792K
__LINKEDIT                         47.5M
__TEXT                             12.8M
__UNICODE                           544K
shared memory                        12K
===========                      =======
TOTAL                             186.0M

Model: MacBookPro8,2, BootROM MBP81.0047.B0E, 4 processors, Intel Core i7, 2 GHz, 4 GB, SMC 1.69f1
Graphics: AMD Radeon HD 6490M, AMD Radeon HD 6490M, PCIe, 256 MB
Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.100.98.75.10)
Bluetooth: Version 2.5.0f17, 2 service, 19 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en1
Serial ATA Device: Hitachi HTS547550A9E384, 500.11 GB
Serial ATA Device: MATSHITADVD-R   UJ-8A8
USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3
USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8
USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0252, 0xfa120000 / 4


Change History (1)

comment:1 by Dan Poirier, 12 years ago

Resolution: needsinfo
Status: newclosed

I can't reproduce, can you provide a complete test case that shows the problem?

I created a model with just the field specified, and a simple test that instantiated and saved the model, and no python crash occurred. I'm on Mac OS X 10.7.2, django trunk as of this morning.

Note: See TracTickets for help on using tickets.
Back to Top