Last active
December 28, 2015 19:09
-
-
Save hhatto/7548246 to your computer and use it in GitHub Desktop.
MacOSX10.8.5
Python2.7.6 (from brew)
use compiler Cython0.19.2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ gdb python | |
| GNU gdb 6.3.50-20050815 (Apple version gdb-1824) (Wed Feb 6 22:51:23 UTC 2013) | |
| Copyright 2004 Free Software Foundation, Inc. | |
| GDB is free software, covered by the GNU General Public License, and you are | |
| welcome to change it and/or distribute copies of it under certain conditions. | |
| Type "show copying" to see the conditions. | |
| There is absolutely no warranty for GDB. Type "show warranty" for details. | |
| This GDB was configured as "x86_64-apple-darwin"...Reading symbols for shared libraries .... done | |
| (gdb) r tests/hoedown_test.py | |
| >> SmartyPants | |
| test_double_quotes_to_curly_quotes ... PASSED | |
| test_single_quotes_d ... PASSED | |
| test_single_quotes_ll ... PASSED | |
| test_single_quotes_m ... PASSED | |
| test_single_quotes_re ... PASSED | |
| test_single_quotes_ve ... PASSED | |
| >> Html Renderer | |
| Program received signal EXC_BAD_ACCESS, Could not access memory. | |
| Reason: KERN_INVALID_ADDRESS at address: 0x0000000000000021 | |
| 0x00000001000b3bb7 in collect () | |
| (gdb) bt | |
| #0 0x00000001000b3bb7 in collect () | |
| #1 0x00000001000b43e3 in _PyObject_GC_Malloc () | |
| #2 0x00000001000b4448 in _PyObject_GC_NewVar () | |
| #3 0x000000010002a664 in PyFrame_New () | |
| #4 0x000000010008a8e8 in fast_function () | |
| #5 0x0000000100087795 in PyEval_EvalFrameEx () | |
| #6 0x000000010008459d in PyEval_EvalCodeEx () | |
| #7 0x000000010002b9da in function_call () | |
| #8 0x000000010000e22b in PyObject_Call () | |
| #9 0x0000000100018c5f in instancemethod_call () | |
| #10 0x000000010000e22b in PyObject_Call () | |
| #11 0x0000000100053975 in slot_tp_init () | |
| #12 0x000000010004f443 in type_call () | |
| #13 0x000000010000e22b in PyObject_Call () | |
| #14 0x000000010008836c in PyEval_EvalFrameEx () | |
| #15 0x000000010008a92b in fast_function () | |
| #16 0x0000000100087795 in PyEval_EvalFrameEx () | |
| #17 0x000000010008a92b in fast_function () | |
| #18 0x0000000100087795 in PyEval_EvalFrameEx () | |
| #19 0x000000010008459d in PyEval_EvalCodeEx () | |
| #20 0x000000010008a98f in fast_function () | |
| #21 0x0000000100087795 in PyEval_EvalFrameEx () | |
| #22 0x0000000100023244 in gen_send_ex () | |
| #23 0x0000000100084cbe in PyEval_EvalFrameEx () | |
| #24 0x000000010008459d in PyEval_EvalCodeEx () | |
| #25 0x000000010008a98f in fast_function () | |
| #26 0x0000000100087795 in PyEval_EvalFrameEx () | |
| #27 0x000000010008a92b in fast_function () | |
| #28 0x0000000100087795 in PyEval_EvalFrameEx () | |
| #29 0x000000010008459d in PyEval_EvalCodeEx () | |
| #30 0x0000000100083f31 in PyEval_EvalCode () | |
| #31 0x00000001000a2e08 in run_mod () | |
| #32 0x00000001000a2eaf in PyRun_FileExFlags () | |
| #33 0x00000001000a29fd in PyRun_SimpleFileExFlags () | |
| #34 0x00000001000b356b in Py_Main () | |
| #35 0x00007fff8d6147e1 in start () | |
| (gdb) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment