There are two ways to inject code to watch a program run: tracing and profiling. They are similar, but intended for different purposes and so have different constraints. The easiest, but least efficient, way to monitor a program is through a trace hook, which can be used to write a debugger, monitor code coverage, or achieve many other purposes.

The trace hook is modified by passing a callback function to sys.settrace(). The callback will receive three arguments: the stack frame from the code being run, a string naming the type of notification, and an event-specific argument value. the table below lists the seven event types for different levels of information that occur as a program is being executed.

Tracing Function call


In [1]:
import sys


def trace_calls(frame, event, arg):
    if event != 'call':
        return
    co = frame.f_code
    func_name = co.co_name
    if func_name == 'write':
        # Ignore write() calls from printing
        return
    func_line_no = frame.f_lineno
    func_filename = co.co_filename
    caller = frame.f_back
    caller_line_no = caller.f_lineno
    caller_filename = caller.f_code.co_filename
    print('* Call to', func_name)
    print('*  on line {} of {}'.format(
        func_line_no, func_filename))
    print('*  from line {} of {}'.format(
        caller_line_no, caller_filename))
    return


def b():
    print('inside b()\n')


def a():
    print('inside a()\n')
    b()


sys.settrace(trace_calls)
a()


* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 2826 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to run_code
*  on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2827 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__
*  on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to pre_run_code_hook
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 149 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to user_global_ns
*  on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to <module>
*  on line 35 of <ipython-input-1-d084bea61011>
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to a
*  on line 29 of <ipython-input-1-d084bea61011>
*  from line 35 of <ipython-input-1-d084bea61011>
* Call to _is_master_process
*  on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 369 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule
*  on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 371 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 185 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
inside a()
* Call to _schedule_flush
*  on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 379 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to _is_master_process
*  on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 369 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule
*  on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 371 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 185 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py

* Call to _schedule_flush
*  on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 379 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to b
*  on line 25 of <ipython-input-1-d084bea61011>
*  from line 31 of <ipython-input-1-d084bea61011>
* Call to _is_master_process
*  on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 369 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule
*  on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 371 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 185 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
inside b()
* Call to _schedule_flush
*  on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 379 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to _is_master_process
*  on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 369 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule
*  on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 371 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 185 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py

* Call to _schedule_flush
*  on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 379 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __call__
*  on line 236 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/displayhook.py
*  from line 35 of <ipython-input-1-d084bea61011>
* Call to check_for_underscore
*  on line 72 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/displayhook.py
*  from line 242 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/displayhook.py
* Call to softspace
*  on line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2831 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __set__
*  on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2719 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to set
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 583 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 557 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 589 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate
*  on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__
*  on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2723 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to set
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 583 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 557 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait
*  on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 572 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change
*  on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 1137 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to trigger
*  on line 66 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/events.py
*  from line 2725 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to trigger
*  on line 66 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/events.py
*  from line 2727 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __exit__
*  on line 54 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/display_trap.py
*  from line 2727 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to unset
*  on line 67 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/display_trap.py
*  from line 56 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/display_trap.py
* Call to __exit__
*  on line 74 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
*  from line 2727 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to deactivate
*  on line 107 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
*  from line 76 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to iteritems
*  on line 176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 111 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to remove_builtin
*  on line 93 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
*  from line 112 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to remove_builtin
*  on line 93 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
*  from line 112 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to remove_builtin
*  on line 93 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
*  from line 112 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to remove_builtin
*  on line 93 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
*  from line 112 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2732 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2732 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to store_output
*  on line 746 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
*  from line 2732 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 756 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2734 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__
*  on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2734 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to set
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 583 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 557 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 1866 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 589 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate_bounds
*  on line 1830 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 1869 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate
*  on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait
*  on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 572 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change
*  on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 1137 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _restore_input
*  on line 168 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
*  from line 198 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to success
*  on line 178 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 205 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 223 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to user_expressions
*  on line 2387 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 233 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to user_global_ns
*  on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2404 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to iteritems
*  on line 176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 2406 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 241 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to read_payload
*  on line 51 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/payload.py
*  from line 241 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 52 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/payload.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable
*  on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to make_dynamic_default
*  on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 2321 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 589 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 2233 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2322 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2236 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements
*  on line 2314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2240 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements
*  on line 2244 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2319 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements
*  on line 2314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2323 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements
*  on line 2244 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2319 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate
*  on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 244 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to clear_payload
*  on line 54 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/payload.py
*  from line 244 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to __set__
*  on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 55 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/payload.py
* Call to set
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 583 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 557 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 2321 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 589 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 2233 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2322 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2236 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements
*  on line 2314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2240 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements
*  on line 2244 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2319 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements
*  on line 2314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2323 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements
*  on line 2244 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2319 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate
*  on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to flush
*  on line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 393 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 317 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to schedule
*  on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 319 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 185 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __init__
*  on line 498 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 320 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __init__
*  on line 215 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 499 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to schedule
*  on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 321 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 185 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to wait
*  on line 533 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 322 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __enter__
*  on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to wait
*  on line 263 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 551 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned
*  on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 286 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _release_save
*  on line 248 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 291 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _acquire_restore
*  on line 251 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 304 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __exit__
*  on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 552 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to flush
*  on line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 394 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 317 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to schedule
*  on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 319 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 185 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __init__
*  on line 498 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 320 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __init__
*  on line 215 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 499 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to schedule
*  on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 321 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 185 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to wait
*  on line 533 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 322 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __enter__
*  on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __exit__
*  on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 552 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 398 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 399 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to json_clean
*  on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
*  from line 402 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __instancecheck__
*  on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
*  from line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 182 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 188 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __instancecheck__
*  on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
*  from line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 182 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 188 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to iteritems
*  on line 175 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
*  from line 166 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to json_clean
*  on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
*  from line 167 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __instancecheck__
*  on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
*  from line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 182 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 188 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __instancecheck__
*  on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
*  from line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 182 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 188 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to json_clean
*  on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
*  from line 167 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __instancecheck__
*  on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
*  from line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 182 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 188 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __subclasscheck__
*  on line 194 of /Users/gaufung/anaconda/lib/python3.6/abc.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 197 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 204 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __iter__
*  on line 58 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 220 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __init__
*  on line 16 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __enter__
*  on line 20 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to add
*  on line 81 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 222 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __iter__
*  on line 65 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 223 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __exit__
*  on line 26 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 65 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to _commit_removals
*  on line 52 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 32 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to json_clean
*  on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
*  from line 167 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __instancecheck__
*  on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
*  from line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 182 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 188 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __instancecheck__
*  on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
*  from line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 182 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 188 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to iteritems
*  on line 175 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
*  from line 166 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to json_clean
*  on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
*  from line 167 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __instancecheck__
*  on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
*  from line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 182 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 188 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __subclasscheck__
*  on line 194 of /Users/gaufung/anaconda/lib/python3.6/abc.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 197 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 204 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __iter__
*  on line 58 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 220 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __init__
*  on line 16 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __enter__
*  on line 20 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __iter__
*  on line 65 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 220 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __exit__
*  on line 26 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 65 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to _commit_removals
*  on line 52 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 32 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to add
*  on line 81 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 230 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __instancecheck__
*  on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
*  from line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 182 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 188 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __subclasscheck__
*  on line 194 of /Users/gaufung/anaconda/lib/python3.6/abc.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 197 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 204 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __iter__
*  on line 58 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 220 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __init__
*  on line 16 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __enter__
*  on line 20 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __iter__
*  on line 65 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 220 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __exit__
*  on line 26 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 65 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to _commit_removals
*  on line 52 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 32 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __subclasscheck__
*  on line 194 of /Users/gaufung/anaconda/lib/python3.6/abc.py
*  from line 226 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 197 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 204 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __iter__
*  on line 58 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 220 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __init__
*  on line 16 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __enter__
*  on line 20 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __exit__
*  on line 26 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 65 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to _commit_removals
*  on line 52 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 32 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __subclasscheck__
*  on line 194 of /Users/gaufung/anaconda/lib/python3.6/abc.py
*  from line 226 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 197 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 204 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to add
*  on line 81 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 230 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to add
*  on line 81 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
*  from line 230 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to <listcomp>
*  on line 153 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
*  from line 153 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to finish_metadata
*  on line 137 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
*  from line 403 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 405 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to send
*  on line 608 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 407 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to msg
*  on line 515 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 664 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_header
*  on line 512 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 523 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_id
*  on line 460 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 513 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to uuid4
*  on line 600 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
*  from line 463 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __init__
*  on line 106 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
*  from line 602 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __str__
*  on line 226 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
*  from line 463 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 513 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 513 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to msg_header
*  on line 206 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 513 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to extract_header
*  on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 527 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 665 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 665 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to serialize
*  on line 549 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 673 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 576 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 576 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 40 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to __init__
*  on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to encode
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to iterencode
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 586 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 586 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 40 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to __init__
*  on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to encode
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to iterencode
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to date_default
*  on line 75 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 257 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 587 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 587 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 40 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to __init__
*  on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to encode
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to iterencode
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 588 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 588 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 40 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to __init__
*  on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to encode
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to iterencode
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to date_default
*  on line 75 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 257 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to sign
*  on line 534 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 601 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 544 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to copy
*  on line 95 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 544 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to hexdigest
*  on line 127 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 547 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to _current
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 130 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to encode
*  on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
*  from line 547 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to <listcomp>
*  on line 675 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 675 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 676 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to send_multipart
*  on line 255 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 684 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to put
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/queue.py
*  from line 260 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to __enter__
*  on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 126 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to _put
*  on line 206 of /Users/gaufung/anaconda/lib/python3.6/queue.py
*  from line 143 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to notify
*  on line 334 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 145 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to _is_owned
*  on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 344 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __exit__
*  on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 145 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to on_send
*  on line 193 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 263 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _check_closed
*  on line 497 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 229 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to wrap
*  on line 253 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
*  from line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _add_io_state
*  on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 267 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _update_handler
*  on line 526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 518 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to update_handler
*  on line 727 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
*  from line 530 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to split_fd
*  on line 635 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
*  from line 728 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to __getattr__
*  on line 35 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/attrsettr.py
*  from line 652 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to modify
*  on line 111 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
*  from line 729 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to _map_events
*  on line 84 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
*  from line 112 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to modify
*  on line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
*  from line 112 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to register
*  on line 28 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
*  from line 61 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 686 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 409 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to debug
*  on line 1279 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
*  from line 409 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to isEnabledFor
*  on line 1537 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
*  from line 1288 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to getEffectiveLevel
*  on line 1523 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
*  from line 1543 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to post_handler_hook
*  on line 243 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
*  from line 232 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to signal
*  on line 45 of /Users/gaufung/anaconda/lib/python3.6/signal.py
*  from line 245 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to _enum_to_int
*  on line 35 of /Users/gaufung/anaconda/lib/python3.6/signal.py
*  from line 47 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to _enum_to_int
*  on line 35 of /Users/gaufung/anaconda/lib/python3.6/signal.py
*  from line 47 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to _int_to_enum
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/signal.py
*  from line 48 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to __call__
*  on line 265 of /Users/gaufung/anaconda/lib/python3.6/enum.py
*  from line 30 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to __new__
*  on line 515 of /Users/gaufung/anaconda/lib/python3.6/enum.py
*  from line 291 of /Users/gaufung/anaconda/lib/python3.6/enum.py
* Call to _missing_
*  on line 544 of /Users/gaufung/anaconda/lib/python3.6/enum.py
*  from line 533 of /Users/gaufung/anaconda/lib/python3.6/enum.py
* Call to flush
*  on line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 234 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 317 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to schedule
*  on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 319 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 185 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __init__
*  on line 498 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 320 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __init__
*  on line 215 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 499 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to schedule
*  on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 321 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 185 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to wait
*  on line 533 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 322 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __enter__
*  on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to wait
*  on line 263 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 551 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned
*  on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 286 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _release_save
*  on line 248 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 291 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _acquire_restore
*  on line 251 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 304 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __exit__
*  on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 552 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to flush
*  on line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 235 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 317 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to schedule
*  on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 319 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 185 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __init__
*  on line 498 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 320 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __init__
*  on line 215 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 499 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to schedule
*  on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 321 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 185 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to wait
*  on line 533 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 322 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __enter__
*  on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to wait
*  on line 263 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 551 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned
*  on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 286 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _release_save
*  on line 248 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 291 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _acquire_restore
*  on line 251 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 304 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __exit__
*  on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 552 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _publish_status
*  on line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
*  from line 236 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 316 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 316 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 319 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _topic
*  on line 619 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
*  from line 320 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 621 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to cast_bytes
*  on line 29 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
*  from line 623 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to encode
*  on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
*  from line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to send
*  on line 608 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 320 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to msg
*  on line 515 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 664 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_header
*  on line 512 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 523 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_id
*  on line 460 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 513 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to uuid4
*  on line 600 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
*  from line 463 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __init__
*  on line 106 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
*  from line 602 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __str__
*  on line 226 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
*  from line 463 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 513 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 513 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to msg_header
*  on line 206 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 513 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to extract_header
*  on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 527 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 665 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 665 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to serialize
*  on line 549 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 673 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 576 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 576 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 40 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to __init__
*  on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to encode
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to iterencode
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 586 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 586 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 40 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to __init__
*  on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to encode
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to iterencode
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to date_default
*  on line 75 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 257 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 587 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 587 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 40 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to __init__
*  on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to encode
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to iterencode
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 588 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 588 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 40 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to __init__
*  on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to encode
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to iterencode
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to sign
*  on line 534 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 601 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 544 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to copy
*  on line 95 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 544 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to hexdigest
*  on line 127 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 547 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to _current
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 130 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to encode
*  on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
*  from line 547 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to <listcomp>
*  on line 675 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 675 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 676 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to send_multipart
*  on line 247 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 684 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to send_multipart
*  on line 194 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 249 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule
*  on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 185 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 686 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __exit__
*  on line 223 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
*  from line 414 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _rebuild_io_state
*  on line 501 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to receiving
*  on line 396 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 506 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to sending
*  on line 400 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 508 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to empty
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/queue.py
*  from line 402 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _qsize
*  on line 202 of /Users/gaufung/anaconda/lib/python3.6/queue.py
*  from line 102 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to poll
*  on line 117 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
*  from line 862 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to poll
*  on line 77 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
*  from line 122 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to <listcomp>
*  on line 123 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
*  from line 123 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to _remap_events
*  on line 96 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
*  from line 123 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to null_wrapper
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
*  from line 887 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to _handle_events
*  on line 427 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* Call to _handle_send
*  on line 477 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 444 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to sending
*  on line 400 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 481 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to empty
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/queue.py
*  from line 402 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _qsize
*  on line 202 of /Users/gaufung/anaconda/lib/python3.6/queue.py
*  from line 102 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to get
*  on line 147 of /Users/gaufung/anaconda/lib/python3.6/queue.py
*  from line 485 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to __enter__
*  on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 158 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to _qsize
*  on line 202 of /Users/gaufung/anaconda/lib/python3.6/queue.py
*  from line 163 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to _get
*  on line 210 of /Users/gaufung/anaconda/lib/python3.6/queue.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to notify
*  on line 334 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 175 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to _is_owned
*  on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 344 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __exit__
*  on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 176 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to send_multipart
*  on line 326 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/socket.py
*  from line 487 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _run_callback
*  on line 407 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to __enter__
*  on line 219 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
*  from line 413 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to null_wrapper
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
*  from line 414 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to <lambda>
*  on line 266 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* Call to __exit__
*  on line 223 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
*  from line 414 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _rebuild_io_state
*  on line 501 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to receiving
*  on line 396 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 506 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to sending
*  on line 400 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 508 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to empty
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/queue.py
*  from line 402 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _qsize
*  on line 202 of /Users/gaufung/anaconda/lib/python3.6/queue.py
*  from line 102 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to _update_handler
*  on line 526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 512 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to update_handler
*  on line 727 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
*  from line 530 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to split_fd
*  on line 635 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
*  from line 728 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to __getattr__
*  on line 35 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/attrsettr.py
*  from line 652 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to modify
*  on line 111 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
*  from line 729 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to _map_events
*  on line 84 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
*  from line 112 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to modify
*  on line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
*  from line 112 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to register
*  on line 28 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
*  from line 61 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
* Call to poll
*  on line 117 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
*  from line 862 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to poll
*  on line 77 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
*  from line 122 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py

Tracing inside function


In [2]:
import functools
import sys


def trace_lines(frame, event, arg):
    if event != 'line':
        return
    co = frame.f_code
    func_name = co.co_name
    line_no = frame.f_lineno
    print('*  {} line {}'.format(func_name, line_no))


def trace_calls(frame, event, arg, to_be_traced):
    if event != 'call':
        return
    co = frame.f_code
    func_name = co.co_name
    if func_name == 'write':
        # Ignore write() calls from printing
        return
    line_no = frame.f_lineno
    filename = co.co_filename
    print('* Call to {} on line {} of {}'.format(
        func_name, line_no, filename))
    if func_name in to_be_traced:
        # Trace into this function
        return trace_lines
    return


def c(input):
    print('input =', input)
    print('Leaving c()')


def b(arg):
    val = arg * 5
    c(val)
    print('Leaving b()')


def a():
    b(2)
    print('Leaving a()')


tracer = functools.partial(trace_calls, to_be_traced=['b'])
sys.settrace(tracer)
a()


* Call to <listcomp>
*  on line 123 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
*  from line 123 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to _remap_events
*  on line 96 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
*  from line 123 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to null_wrapper
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
*  from line 887 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to _handle_events
*  on line 427 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* Call to _handle_recv
*  on line 456 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 440 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to recv_multipart
*  on line 370 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/socket.py
*  from line 461 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _run_callback
*  on line 407 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
*  from line 472 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to __enter__
*  on line 219 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
*  from line 413 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to null_wrapper
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
*  from line 414 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to dispatcher
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
*  from line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* Call to dispatch_shell
*  on line 191 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
*  from line 276 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 194 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 197 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to feed_identities
*  on line 756 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 197 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to <listcomp>
*  on line 791 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 791 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to deserialize
*  on line 817 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 848 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 852 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _add_digest
*  on line 793 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 856 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 795 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 799 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 800 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 800 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to sign
*  on line 534 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 857 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 544 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to copy
*  on line 95 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 544 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to hexdigest
*  on line 127 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 547 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to _current
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 130 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to encode
*  on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
*  from line 547 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 862 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 862 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to loads
*  on line 47 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to loads
*  on line 302 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 56 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to decode
*  on line 334 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
*  from line 354 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to raw_decode
*  on line 345 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
*  from line 339 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
* Call to extract_dates
*  on line 50 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 863 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to iteritems
*  on line 175 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
*  from line 54 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to extract_dates
*  on line 50 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 55 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to parse_date
*  on line 30 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 60 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to extract_dates
*  on line 50 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 55 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to parse_date
*  on line 30 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 60 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to extract_dates
*  on line 50 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 55 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to parse_date
*  on line 30 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 60 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to extract_dates
*  on line 50 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 55 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to parse_date
*  on line 30 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 60 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to extract_dates
*  on line 50 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 55 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to parse_date
*  on line 30 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 60 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 866 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 866 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to loads
*  on line 47 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to loads
*  on line 302 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 56 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to decode
*  on line 334 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
*  from line 354 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to raw_decode
*  on line 345 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
*  from line 339 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
* Call to extract_dates
*  on line 50 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 866 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to iteritems
*  on line 175 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
*  from line 54 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 867 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 867 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to loads
*  on line 47 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to loads
*  on line 302 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 56 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to decode
*  on line 334 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
*  from line 354 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to raw_decode
*  on line 345 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
*  from line 339 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 869 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 869 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to loads
*  on line 47 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to loads
*  on line 302 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 56 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to decode
*  on line 334 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
*  from line 354 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to raw_decode
*  on line 345 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
*  from line 339 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
* Call to <listcomp>
*  on line 872 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 872 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 877 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to adapt
*  on line 371 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/adapter.py
*  from line 880 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to set_parent
*  on line 116 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
*  from line 205 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to set_parent
*  on line 323 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
*  from line 120 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to __set__
*  on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 332 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to set
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 583 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 557 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate
*  on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__
*  on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 333 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to set
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 583 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 557 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 589 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2527 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements
*  on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2530 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__
*  on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate
*  on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait
*  on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 572 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change
*  on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 1137 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 121 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set_parent
*  on line 538 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/zmqshell.py
*  from line 121 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to __set__
*  on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 540 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/zmqshell.py
* Call to set
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 583 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 557 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate
*  on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait
*  on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 572 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change
*  on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 1137 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set_parent
*  on line 56 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/displayhook.py
*  from line 541 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/zmqshell.py
* Call to extract_header
*  on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/displayhook.py
* Call to __set__
*  on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/displayhook.py
* Call to set
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 583 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 557 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 589 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2527 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements
*  on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2530 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__
*  on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate
*  on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait
*  on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 572 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change
*  on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 1137 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set_parent
*  on line 73 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/zmqshell.py
*  from line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/zmqshell.py
* Call to extract_header
*  on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 75 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/zmqshell.py
* Call to __set__
*  on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 75 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/zmqshell.py
* Call to set
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 583 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 557 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 589 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2527 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements
*  on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2530 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__
*  on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate
*  on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait
*  on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 572 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change
*  on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 1137 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set_parent
*  on line 288 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/zmqshell.py
* Call to extract_header
*  on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 289 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to set_parent
*  on line 288 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 550 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/zmqshell.py
* Call to extract_header
*  on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 289 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to _publish_status
*  on line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
*  from line 206 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 316 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 316 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 319 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _topic
*  on line 619 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
*  from line 320 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 621 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to cast_bytes
*  on line 29 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
*  from line 623 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to encode
*  on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
*  from line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to send
*  on line 608 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 320 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to msg
*  on line 515 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 664 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_header
*  on line 512 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 523 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_id
*  on line 460 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 513 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to uuid4
*  on line 600 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
*  from line 463 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __init__
*  on line 106 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
*  from line 602 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __str__
*  on line 226 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
*  from line 463 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 513 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 513 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to msg_header
*  on line 206 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 513 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to extract_header
*  on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 527 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 665 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 665 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to serialize
*  on line 549 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 673 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 576 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 576 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 40 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to __init__
*  on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to encode
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to iterencode
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 586 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 586 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 40 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to __init__
*  on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to encode
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to iterencode
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to date_default
*  on line 75 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 257 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 587 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 587 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 40 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to __init__
*  on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to encode
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to iterencode
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 588 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 588 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 40 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to __init__
*  on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to encode
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to iterencode
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to sign
*  on line 534 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 601 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 544 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to copy
*  on line 95 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 544 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to hexdigest
*  on line 127 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 547 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to _current
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 130 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to encode
*  on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
*  from line 547 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to <listcomp>
*  on line 675 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 675 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 676 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to send_multipart
*  on line 247 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 684 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to send_multipart
*  on line 194 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 249 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule
*  on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 185 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 686 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to debug
*  on line 1279 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
*  from line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to isEnabledFor
*  on line 1537 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
*  from line 1288 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to getEffectiveLevel
*  on line 1523 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
*  from line 1543 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to debug
*  on line 1279 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
*  from line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to isEnabledFor
*  on line 1537 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
*  from line 1288 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to getEffectiveLevel
*  on line 1523 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
*  from line 1543 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to should_handle
*  on line 172 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
*  from line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 178 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 225 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to debug
*  on line 1279 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
*  from line 225 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to isEnabledFor
*  on line 1537 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
*  from line 1288 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to getEffectiveLevel
*  on line 1523 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
*  from line 1543 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to pre_handler_hook
*  on line 238 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
*  from line 226 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to signal
*  on line 45 of /Users/gaufung/anaconda/lib/python3.6/signal.py
*  from line 241 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to _enum_to_int
*  on line 35 of /Users/gaufung/anaconda/lib/python3.6/signal.py
*  from line 47 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to _enum_to_int
*  on line 35 of /Users/gaufung/anaconda/lib/python3.6/signal.py
*  from line 47 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to _int_to_enum
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/signal.py
*  from line 48 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to __call__
*  on line 265 of /Users/gaufung/anaconda/lib/python3.6/enum.py
*  from line 30 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to __new__
*  on line 515 of /Users/gaufung/anaconda/lib/python3.6/enum.py
*  from line 291 of /Users/gaufung/anaconda/lib/python3.6/enum.py
* Call to execute_request
*  on line 364 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
*  from line 228 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to no_code
*  on line 12 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
*  from line 369 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to init_metadata
*  on line 123 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
*  from line 381 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to init_metadata
*  on line 348 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
*  from line 128 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to execution_count
*  on line 178 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
*  from line 386 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to execution_count
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
*  from line 386 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to execution_count
*  on line 178 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
*  from line 387 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _publish_execute_input
*  on line 306 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
*  from line 387 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 309 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 309 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _topic
*  on line 619 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
*  from line 311 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 621 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to cast_bytes
*  on line 29 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
*  from line 623 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to encode
*  on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
*  from line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to send
*  on line 608 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 311 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to msg
*  on line 515 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 664 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_header
*  on line 512 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 523 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_id
*  on line 460 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 513 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to uuid4
*  on line 600 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
*  from line 463 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __init__
*  on line 106 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
*  from line 602 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __str__
*  on line 226 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
*  from line 463 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 513 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 513 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to msg_header
*  on line 206 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 513 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to extract_header
*  on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 527 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 665 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 665 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to serialize
*  on line 549 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 673 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 576 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 576 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 40 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to __init__
*  on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to encode
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to iterencode
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 586 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 586 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 40 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to __init__
*  on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to encode
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to iterencode
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to date_default
*  on line 75 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
*  from line 257 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 587 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 587 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 40 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to __init__
*  on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to encode
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to iterencode
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 588 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda>
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 588 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
*  from line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps
*  on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
*  from line 40 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to __init__
*  on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to encode
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 238 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to iterencode
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to sign
*  on line 534 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 601 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 544 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to copy
*  on line 95 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 544 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to update
*  on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to hexdigest
*  on line 127 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 547 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to _current
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
*  from line 130 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to encode
*  on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
*  from line 547 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to <listcomp>
*  on line 675 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
*  from line 675 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 676 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to send_multipart
*  on line 247 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 684 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to send_multipart
*  on line 194 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 249 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule
*  on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 199 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive
*  on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 185 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_set
*  on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1113 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock
*  on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 1115 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  from line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 686 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to do_execute
*  on line 188 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
*  from line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _forward_input
*  on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
*  from line 192 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to __set__
*  on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 155 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to set
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 583 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 557 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 589 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate
*  on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__
*  on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 158 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to set
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 583 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 557 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate
*  on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to run_cell
*  on line 499 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/zmqshell.py
*  from line 196 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to run_cell
*  on line 2591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 501 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/zmqshell.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2625 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to trigger
*  on line 66 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/events.py
*  from line 2632 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to _clear_warning_registry
*  on line 865 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 74 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/events.py
* Call to user_global_ns
*  on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 869 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to trigger
*  on line 66 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/events.py
*  from line 2634 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2643 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to transform_cell
*  on line 592 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 2643 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to reset
*  on line 525 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 595 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 222 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 527 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to transforms
*  on line 509 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 490 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 425 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 425 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 377 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 517 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 603 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 597 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 628 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 637 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 490 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 425 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 425 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 377 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 517 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 439 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 439 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 525 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 447 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 447 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 525 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 145 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 145 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 145 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 145 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 485 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 485 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _accumulating
*  on line 647 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 670 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 485 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 485 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 145 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 145 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 145 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 145 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 145 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 145 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 145 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 145 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line
*  on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 640 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 653 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 658 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to help_end
*  on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to escaped_commands
*  on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__
*  on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 277 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to split_user_input
*  on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
*  from line 113 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc
*  on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
*  from line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to cast_unicode
*  on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_magic
*  on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 663 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assign_from_system
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 667 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to get_line
*  on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__
*  on line 12 of <string>
*  from line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 151 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__
*  on line 12 of <string>
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to output
*  on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 164 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 183 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push
*  on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store
*  on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source
*  on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 449 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent
*  on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 310 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 432 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub
*  on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 147 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _compile
*  on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
*  from line 191 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent
*  on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 434 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces
*  on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 410 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__
*  on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __enter__
*  on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to simplefilter
*  on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 313 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _add_filter
*  on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 157 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__
*  on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _maybe_compile
*  on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 168 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 82 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 87 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 92 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__
*  on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
*  from line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to flush_transformers
*  on line 541 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 598 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to transforms_in_use
*  on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 565 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush
*  on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 568 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush
*  on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 552 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush
*  on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 552 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush
*  on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 552 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush
*  on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 552 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush
*  on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 552 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush
*  on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 552 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush
*  on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 552 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush
*  on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 552 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush
*  on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 552 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush
*  on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 552 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 560 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 560 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 560 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 560 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 560 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 560 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 560 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 560 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 560 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 560 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 560 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 525 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 601 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 222 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 527 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to transforms
*  on line 509 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
*  from line 533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to leading_indent
*  on line 490 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 425 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _strip_prompts
*  on line 425 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cellmagic
*  on line 374 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to strip_encoding_cookie
*  on line 517 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to assemble_logical_lines
*  on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset
*  on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 535 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset_tokenizer
*  on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
*  from line 174 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens
*  on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize
*  on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
*  from line 134 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2661 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2661 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to store_inputs
*  on line 696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
*  from line 2662 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 721 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 722 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 725 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 727 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 727 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 728 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set
*  on line 512 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 728 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to __enter__
*  on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 519 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to notify_all
*  on line 357 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 521 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to notify
*  on line 334 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 364 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned
*  on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 344 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __exit__
*  on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
*  from line 521 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 731 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__
*  on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 731 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to set
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 583 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 557 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 589 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate
*  on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 732 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__
*  on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 732 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to set
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 583 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 557 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 589 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate
*  on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 733 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__
*  on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 733 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to set
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 583 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 557 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 589 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate
*  on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait
*  on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 572 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change
*  on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 1137 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__
*  on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 734 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to set
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 583 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 557 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 589 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate
*  on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait
*  on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 572 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change
*  on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 1137 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 738 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 739 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 740 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 741 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 743 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 744 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to push
*  on line 1308 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 744 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to log
*  on line 169 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/logger.py
*  from line 2664 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to log_write
*  on line 189 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/logger.py
*  from line 187 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/logger.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2678 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __enter__
*  on line 67 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
*  from line 2678 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to activate
*  on line 100 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
*  from line 69 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to iteritems
*  on line 176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
*  from line 104 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to add_builtin
*  on line 81 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
*  from line 105 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to add_builtin
*  on line 81 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
*  from line 105 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to add_builtin
*  on line 81 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
*  from line 105 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to add_builtin
*  on line 81 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
*  from line 105 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2679 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to cache
*  on line 114 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/compilerop.py
*  from line 2679 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to code_name
*  on line 54 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/compilerop.py
*  from line 130 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/compilerop.py
* Call to <listcomp>
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/compilerop.py
*  from line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/compilerop.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __enter__
*  on line 48 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/display_trap.py
*  from line 2681 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to set
*  on line 61 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/display_trap.py
*  from line 50 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/display_trap.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 63 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/display_trap.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 65 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/display_trap.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to ast_parse
*  on line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/compilerop.py
*  from line 2684 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to transform_ast
*  on line 2738 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2703 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2753 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2765 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__
*  on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2712 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to set
*  on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 583 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate
*  on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 557 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate
*  on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 589 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate
*  on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait
*  on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 572 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change
*  on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 1137 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__
*  on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
*  from line 1144 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__
*  on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 2715 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to get
*  on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
*  from line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to run_ast_nodes
*  on line 2770 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2717 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 2820 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to run_code
*  on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2821 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__
*  on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to pre_run_code_hook
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 149 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to user_global_ns
*  on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to <module>
*  on line 1 of <ipython-input-2-b3922c2406b1>
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 2820 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to run_code
*  on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2821 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__
*  on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to pre_run_code_hook
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 149 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to user_global_ns
*  on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to <module>
*  on line 2 of <ipython-input-2-b3922c2406b1>
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 2820 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to run_code
*  on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2821 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__
*  on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to pre_run_code_hook
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 149 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to user_global_ns
*  on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to <module>
*  on line 5 of <ipython-input-2-b3922c2406b1>
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 2820 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to run_code
*  on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2821 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__
*  on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to pre_run_code_hook
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 149 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to user_global_ns
*  on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to <module>
*  on line 14 of <ipython-input-2-b3922c2406b1>
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 2820 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to run_code
*  on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2821 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__
*  on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to pre_run_code_hook
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 149 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to user_global_ns
*  on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to <module>
*  on line 32 of <ipython-input-2-b3922c2406b1>
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 2820 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to run_code
*  on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2821 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__
*  on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to pre_run_code_hook
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 149 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to user_global_ns
*  on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to <module>
*  on line 37 of <ipython-input-2-b3922c2406b1>
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 2820 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to run_code
*  on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2821 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__
*  on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to pre_run_code_hook
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 149 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to user_global_ns
*  on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to <module>
*  on line 43 of <ipython-input-2-b3922c2406b1>
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 2820 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to run_code
*  on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2821 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__
*  on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to pre_run_code_hook
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 149 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to user_global_ns
*  on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to <module>
*  on line 48 of <ipython-input-2-b3922c2406b1>
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
*  from line 2820 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to run_code
*  on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2821 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__
*  on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__
*  on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 2879 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to pre_run_code_hook
*  on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
*  from line 149 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to user_global_ns
*  on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to <module>
*  on line 49 of <ipython-input-2-b3922c2406b1>
*  from line 2881 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to run_code on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__ on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
* Call to __call__ on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to pre_run_code_hook on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to user_global_ns on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to <module> on line 50 of <ipython-input-2-b3922c2406b1>
* Call to a on line 43 of <ipython-input-2-b3922c2406b1>
* Call to b on line 37 of <ipython-input-2-b3922c2406b1>
*  b line 38
*  b line 39
* Call to c on line 32 of <ipython-input-2-b3922c2406b1>
* Call to _is_master_process on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
input =* Call to _schedule_flush on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to _is_master_process on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
 * Call to _schedule_flush on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to _is_master_process on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
10* Call to _schedule_flush on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to _is_master_process on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py

* Call to _schedule_flush on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to _is_master_process on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
Leaving c()* Call to _schedule_flush on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to _is_master_process on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py

* Call to _schedule_flush on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
*  b line 40
* Call to _is_master_process on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
Leaving b()* Call to _schedule_flush on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to _is_master_process on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py

* Call to _schedule_flush on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to _is_master_process on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
Leaving a()* Call to _schedule_flush on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to _is_master_process on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py

* Call to _schedule_flush on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __call__ on line 236 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/displayhook.py
* Call to check_for_underscore on line 72 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/displayhook.py
* Call to softspace on line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to trigger on line 66 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/events.py
* Call to trigger on line 66 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/events.py
* Call to __exit__ on line 54 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/display_trap.py
* Call to unset on line 67 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/display_trap.py
* Call to __exit__ on line 74 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to deactivate on line 107 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to iteritems on line 176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to remove_builtin on line 93 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to remove_builtin on line 93 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to remove_builtin on line 93 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to remove_builtin on line 93 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to store_output on line 746 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1866 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate_bounds on line 1830 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to _restore_input on line 168 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to success on line 178 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to user_expressions on line 2387 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to user_global_ns on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to iteritems on line 176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to read_payload on line 51 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/payload.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to clear_payload on line 54 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/payload.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2321 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2233 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements on line 2314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements on line 2244 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements on line 2314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements on line 2244 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to flush on line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __init__ on line 498 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to wait on line 533 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __enter__ on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to wait on line 263 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _release_save on line 248 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _acquire_restore on line 251 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __exit__ on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to flush on line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __init__ on line 498 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to wait on line 533 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __enter__ on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to wait on line 263 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _release_save on line 248 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _acquire_restore on line 251 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __exit__ on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to json_clean on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to iteritems on line 175 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to json_clean on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to json_clean on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to json_clean on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to iteritems on line 175 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to json_clean on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* Call to <listcomp> on line 153 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to finish_metadata on line 137 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to send on line 608 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg on line 515 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_header on line 512 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_id on line 460 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to uuid4 on line 600 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __init__ on line 106 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __str__ on line 226 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to msg_header on line 206 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to extract_header on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to serialize on line 549 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to date_default on line 75 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to date_default on line 75 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to sign on line 534 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to copy on line 95 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to hexdigest on line 127 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to _current on line 108 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to encode on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to <listcomp> on line 675 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to send_multipart on line 255 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to put on line 115 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to __enter__ on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _put on line 206 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to notify on line 334 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __exit__ on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to on_send on line 193 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _check_closed on line 497 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to wrap on line 253 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* Call to _add_io_state on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _update_handler on line 526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to update_handler on line 727 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to split_fd on line 635 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to __getattr__ on line 35 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/attrsettr.py
* Call to modify on line 111 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to _map_events on line 84 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to modify on line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
* Call to register on line 28 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to debug on line 1279 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to isEnabledFor on line 1537 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to getEffectiveLevel on line 1523 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to post_handler_hook on line 243 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to signal on line 45 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to _enum_to_int on line 35 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to _enum_to_int on line 35 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to _int_to_enum on line 25 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to __call__ on line 265 of /Users/gaufung/anaconda/lib/python3.6/enum.py
* Call to __new__ on line 515 of /Users/gaufung/anaconda/lib/python3.6/enum.py
* Call to _missing_ on line 544 of /Users/gaufung/anaconda/lib/python3.6/enum.py
* Call to flush on line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __init__ on line 498 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to wait on line 533 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __enter__ on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to wait on line 263 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _release_save on line 248 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _acquire_restore on line 251 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __exit__ on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to flush on line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __init__ on line 498 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to wait on line 533 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __enter__ on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to wait on line 263 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _release_save on line 248 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _acquire_restore on line 251 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __exit__ on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _publish_status on line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _topic on line 619 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to cast_bytes on line 29 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to encode on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to send on line 608 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg on line 515 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_header on line 512 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_id on line 460 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to uuid4 on line 600 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __init__ on line 106 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __str__ on line 226 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to msg_header on line 206 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to extract_header on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to serialize on line 549 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to date_default on line 75 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to sign on line 534 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to copy on line 95 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to hexdigest on line 127 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to _current on line 108 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to encode on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to <listcomp> on line 675 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to send_multipart on line 247 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to send_multipart on line 194 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __exit__ on line 223 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* Call to _rebuild_io_state on line 501 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to receiving on line 396 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to sending on line 400 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to empty on line 90 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to _qsize on line 202 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to poll on line 117 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to poll on line 77 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
* Call to <listcomp> on line 123 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to _remap_events on line 96 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to null_wrapper on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* Call to _handle_events on line 427 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _handle_send on line 477 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to sending on line 400 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to empty on line 90 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to _qsize on line 202 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to get on line 147 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to __enter__ on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _qsize on line 202 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to _get on line 210 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to notify on line 334 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __exit__ on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to send_multipart on line 326 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/socket.py
* Call to _run_callback on line 407 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to __enter__ on line 219 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* Call to null_wrapper on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* Call to <lambda> on line 266 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to __exit__ on line 223 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* Call to _rebuild_io_state on line 501 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to receiving on line 396 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to sending on line 400 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to empty on line 90 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to _qsize on line 202 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to _update_handler on line 526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to update_handler on line 727 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to split_fd on line 635 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to __getattr__ on line 35 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/attrsettr.py
* Call to modify on line 111 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to _map_events on line 84 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to modify on line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
* Call to register on line 28 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
* Call to poll on line 117 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to poll on line 77 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py

Watching the Stack


In [3]:
import sys


def trace_calls_and_returns(frame, event, arg):
    co = frame.f_code
    func_name = co.co_name
    if func_name == 'write':
        # Ignore write() calls from printing
        return
    line_no = frame.f_lineno
    filename = co.co_filename
    if event == 'call':
        print('* Call to {} on line {} of {}'.format(
            func_name, line_no, filename))
        return trace_calls_and_returns
    elif event == 'return':
        print('* {} => {}'.format(func_name, arg))
    return


def b():
    print('inside b()')
    return 'response_from_b '


def a():
    print('inside a()')
    val = b()
    return val * 2


sys.settrace(trace_calls_and_returns)
a()


* Call to <listcomp> on line 123 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to _remap_events on line 96 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to null_wrapper on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* Call to _handle_events on line 427 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _handle_recv on line 456 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to recv_multipart on line 370 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/socket.py
* Call to _run_callback on line 407 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to __enter__ on line 219 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* Call to null_wrapper on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* Call to dispatcher on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to dispatch_shell on line 191 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to feed_identities on line 756 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to <listcomp> on line 791 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to deserialize on line 817 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _add_digest on line 793 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to sign on line 534 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to copy on line 95 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to hexdigest on line 127 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to _current on line 108 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to encode on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to loads on line 47 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to loads on line 302 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to decode on line 334 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
* Call to raw_decode on line 345 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
* Call to extract_dates on line 50 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to iteritems on line 175 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to extract_dates on line 50 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to parse_date on line 30 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to extract_dates on line 50 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to parse_date on line 30 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to extract_dates on line 50 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to parse_date on line 30 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to extract_dates on line 50 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to parse_date on line 30 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to extract_dates on line 50 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to parse_date on line 30 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to loads on line 47 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to loads on line 302 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to decode on line 334 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
* Call to raw_decode on line 345 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
* Call to extract_dates on line 50 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to iteritems on line 175 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to loads on line 47 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to loads on line 302 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to decode on line 334 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
* Call to raw_decode on line 345 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to loads on line 47 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to loads on line 302 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to decode on line 334 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
* Call to raw_decode on line 345 of /Users/gaufung/anaconda/lib/python3.6/json/decoder.py
* Call to <listcomp> on line 872 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to adapt on line 371 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/adapter.py
* Call to set_parent on line 116 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to set_parent on line 323 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set_parent on line 538 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/zmqshell.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to set_parent on line 56 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/displayhook.py
* Call to extract_header on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to set_parent on line 73 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/zmqshell.py
* Call to extract_header on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to set_parent on line 288 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to extract_header on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to set_parent on line 288 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to extract_header on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to _publish_status on line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _topic on line 619 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to cast_bytes on line 29 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to encode on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to send on line 608 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg on line 515 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_header on line 512 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_id on line 460 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to uuid4 on line 600 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __init__ on line 106 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __str__ on line 226 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to msg_header on line 206 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to extract_header on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to serialize on line 549 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to date_default on line 75 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to sign on line 534 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to copy on line 95 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to hexdigest on line 127 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to _current on line 108 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to encode on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to <listcomp> on line 675 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to send_multipart on line 247 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to send_multipart on line 194 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to debug on line 1279 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to isEnabledFor on line 1537 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to getEffectiveLevel on line 1523 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to debug on line 1279 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to isEnabledFor on line 1537 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to getEffectiveLevel on line 1523 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to should_handle on line 172 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to debug on line 1279 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to isEnabledFor on line 1537 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to getEffectiveLevel on line 1523 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to pre_handler_hook on line 238 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to signal on line 45 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to _enum_to_int on line 35 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to _enum_to_int on line 35 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to _int_to_enum on line 25 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to __call__ on line 265 of /Users/gaufung/anaconda/lib/python3.6/enum.py
* Call to __new__ on line 515 of /Users/gaufung/anaconda/lib/python3.6/enum.py
* Call to execute_request on line 364 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to no_code on line 12 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to init_metadata on line 123 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to init_metadata on line 348 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to execution_count on line 178 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to execution_count on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to execution_count on line 178 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _publish_execute_input on line 306 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _topic on line 619 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to cast_bytes on line 29 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to encode on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to send on line 608 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg on line 515 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_header on line 512 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_id on line 460 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to uuid4 on line 600 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __init__ on line 106 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __str__ on line 226 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to msg_header on line 206 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to extract_header on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to serialize on line 549 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to date_default on line 75 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to sign on line 534 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to copy on line 95 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to hexdigest on line 127 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to _current on line 108 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to encode on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to <listcomp> on line 675 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to send_multipart on line 247 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to send_multipart on line 194 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to do_execute on line 188 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _forward_input on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to run_cell on line 499 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/zmqshell.py
* Call to run_cell on line 2591 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to trigger on line 66 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/events.py
* Call to _clear_warning_registry on line 865 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to user_global_ns on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to trigger on line 66 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/events.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to transform_cell on line 592 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset on line 525 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset on line 222 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to transforms on line 509 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 490 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 425 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 425 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 377 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 517 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 603 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 490 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 425 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 425 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 377 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 517 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 439 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 439 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 525 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 447 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 447 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 525 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 485 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _accumulating on line 647 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 546 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 493 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to push_line on line 644 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to help_end on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to escaped_commands on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __init__ on line 110 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to split_user_input on line 53 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/splitinput.py
* Call to get_stream_enc on line 21 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/encoding.py
* Call to cast_unicode on line 25 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_magic on line 554 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assign_from_system on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to push on line 142 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to get_line on line 136 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 548 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to _tokenize on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __new__ on line 12 of <string>
* Call to output on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 519 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to push on line 275 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _store on line 436 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _set_source on line 451 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _update_indent on line 431 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to remove_comments on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to sub on line 184 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _find_indent on line 390 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to num_ini_spaces on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to __init__ on line 428 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __enter__ on line 449 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to simplefilter on line 143 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to _add_filter on line 159 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to __call__ on line 149 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to _maybe_compile on line 68 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to __exit__ on line 468 of /Users/gaufung/anaconda/lib/python3.6/warnings.py
* Call to flush_transformers on line 541 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to transforms_in_use on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to _flush on line 542 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 505 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 458 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 382 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 529 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to reset on line 525 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset on line 222 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to transforms on line 509 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputsplitter.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to leading_indent on line 490 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 425 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to _strip_prompts on line 425 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to cellmagic on line 374 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to strip_encoding_cookie on line 517 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 115 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to assemble_logical_lines on line 190 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to reset_tokenizer on line 133 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/inputtransformer.py
* Call to generate_tokens on line 569 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to _tokenize on line 418 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to store_inputs on line 696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 512 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __enter__ on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to notify_all on line 357 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to notify on line 334 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __exit__ on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to push on line 1308 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to log on line 169 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/logger.py
* Call to log_write on line 189 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/logger.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __enter__ on line 67 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to activate on line 100 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to iteritems on line 176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* Call to add_builtin on line 81 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to add_builtin on line 81 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to add_builtin on line 81 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to add_builtin on line 81 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to cache on line 114 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/compilerop.py
* Call to code_name on line 54 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/compilerop.py
* Call to <listcomp> on line 132 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/compilerop.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __enter__ on line 48 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/display_trap.py
* Call to set on line 61 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/display_trap.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to ast_parse on line 95 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/compilerop.py
* Call to transform_ast on line 2738 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to run_ast_nodes on line 2770 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to run_code on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__ on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
* Call to __call__ on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to pre_run_code_hook on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to user_global_ns on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to <module> on line 1 of <ipython-input-3-2cb567cd54a7>
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to run_code on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__ on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
* Call to __call__ on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to pre_run_code_hook on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to user_global_ns on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to <module> on line 4 of <ipython-input-3-2cb567cd54a7>
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to run_code on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__ on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
* Call to __call__ on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to pre_run_code_hook on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to user_global_ns on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to <module> on line 21 of <ipython-input-3-2cb567cd54a7>
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to run_code on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__ on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
* Call to __call__ on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to pre_run_code_hook on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to user_global_ns on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to <module> on line 26 of <ipython-input-3-2cb567cd54a7>
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* Call to run_code on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__ on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
* Call to __call__ on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to pre_run_code_hook on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to user_global_ns on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to <module> on line 32 of <ipython-input-3-2cb567cd54a7>
* Call to __call__ on line 132 of /Users/gaufung/anaconda/lib/python3.6/codeop.py
* __call__ => <code object <module> at 0x103389930, file "<ipython-input-3-2cb567cd54a7>", line 33>
* Call to run_code on line 2851 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to __getattr__ on line 125 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/ipstruct.py
* __getattr__ => [(100, <bound method pre_run_code_hook of <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>>)]
* Call to __call__ on line 139 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* Call to pre_run_code_hook on line 204 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/hooks.py
* pre_run_code_hook => None
* __call__ => None
* Call to user_global_ns on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* user_global_ns => {'__name__': '__main__', '__doc__': 'Automatically created module for IPython interactive environment', '__package__': None, '__loader__': None, '__spec__': None, '__builtin__': <module 'builtins' (built-in)>, '__builtins__': <module 'builtins' (built-in)>, '_ih': ['', "import sys\n\n\ndef trace_calls(frame, event, arg):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    func_line_no = frame.f_lineno\n    func_filename = co.co_filename\n    caller = frame.f_back\n    caller_line_no = caller.f_lineno\n    caller_filename = caller.f_code.co_filename\n    print('* Call to', func_name)\n    print('*  on line {} of {}'.format(\n        func_line_no, func_filename))\n    print('*  from line {} of {}'.format(\n        caller_line_no, caller_filename))\n    return\n\n\ndef b():\n    print('inside b()\\n')\n\n\ndef a():\n    print('inside a()\\n')\n    b()\n\n\nsys.settrace(trace_calls)\na()", "import functools\nimport sys\n\n\ndef trace_lines(frame, event, arg):\n    if event != 'line':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    line_no = frame.f_lineno\n    print('*  {} line {}'.format(func_name, line_no))\n\n\ndef trace_calls(frame, event, arg, to_be_traced):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    print('* Call to {} on line {} of {}'.format(\n        func_name, line_no, filename))\n    if func_name in to_be_traced:\n        # Trace into this function\n        return trace_lines\n    return\n\n\ndef c(input):\n    print('input =', input)\n    print('Leaving c()')\n\n\ndef b(arg):\n    val = arg * 5\n    c(val)\n    print('Leaving b()')\n\n\ndef a():\n    b(2)\n    print('Leaving a()')\n\n\ntracer = functools.partial(trace_calls, to_be_traced=['b'])\nsys.settrace(tracer)\na()", "import sys\n\n\ndef trace_calls_and_returns(frame, event, arg):\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    if event == 'call':\n        print('* Call to {} on line {} of {}'.format(\n            func_name, line_no, filename))\n        return trace_calls_and_returns\n    elif event == 'return':\n        print('* {} => {}'.format(func_name, arg))\n    return\n\n\ndef b():\n    print('inside b()')\n    return 'response_from_b '\n\n\ndef a():\n    print('inside a()')\n    val = b()\n    return val * 2\n\n\nsys.settrace(trace_calls_and_returns)\na()"], '_oh': {}, '_dh': ['/Users/gaufung/WorkSpace/PythonStandardLibrary/RunningFeatures/sys'], '_sh': <module 'IPython.core.shadowns' from '/Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/shadowns.py'>, 'In': ['', "import sys\n\n\ndef trace_calls(frame, event, arg):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    func_line_no = frame.f_lineno\n    func_filename = co.co_filename\n    caller = frame.f_back\n    caller_line_no = caller.f_lineno\n    caller_filename = caller.f_code.co_filename\n    print('* Call to', func_name)\n    print('*  on line {} of {}'.format(\n        func_line_no, func_filename))\n    print('*  from line {} of {}'.format(\n        caller_line_no, caller_filename))\n    return\n\n\ndef b():\n    print('inside b()\\n')\n\n\ndef a():\n    print('inside a()\\n')\n    b()\n\n\nsys.settrace(trace_calls)\na()", "import functools\nimport sys\n\n\ndef trace_lines(frame, event, arg):\n    if event != 'line':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    line_no = frame.f_lineno\n    print('*  {} line {}'.format(func_name, line_no))\n\n\ndef trace_calls(frame, event, arg, to_be_traced):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    print('* Call to {} on line {} of {}'.format(\n        func_name, line_no, filename))\n    if func_name in to_be_traced:\n        # Trace into this function\n        return trace_lines\n    return\n\n\ndef c(input):\n    print('input =', input)\n    print('Leaving c()')\n\n\ndef b(arg):\n    val = arg * 5\n    c(val)\n    print('Leaving b()')\n\n\ndef a():\n    b(2)\n    print('Leaving a()')\n\n\ntracer = functools.partial(trace_calls, to_be_traced=['b'])\nsys.settrace(tracer)\na()", "import sys\n\n\ndef trace_calls_and_returns(frame, event, arg):\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    if event == 'call':\n        print('* Call to {} on line {} of {}'.format(\n            func_name, line_no, filename))\n        return trace_calls_and_returns\n    elif event == 'return':\n        print('* {} => {}'.format(func_name, arg))\n    return\n\n\ndef b():\n    print('inside b()')\n    return 'response_from_b '\n\n\ndef a():\n    print('inside a()')\n    val = b()\n    return val * 2\n\n\nsys.settrace(trace_calls_and_returns)\na()"], 'Out': {}, 'get_ipython': <bound method InteractiveShell.get_ipython of <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>>, 'exit': <IPython.core.autocall.ZMQExitAutocall object at 0x1031faa20>, 'quit': <IPython.core.autocall.ZMQExitAutocall object at 0x1031faa20>, '_': '', '__': '', '___': '', '_i': "import functools\nimport sys\n\n\ndef trace_lines(frame, event, arg):\n    if event != 'line':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    line_no = frame.f_lineno\n    print('*  {} line {}'.format(func_name, line_no))\n\n\ndef trace_calls(frame, event, arg, to_be_traced):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    print('* Call to {} on line {} of {}'.format(\n        func_name, line_no, filename))\n    if func_name in to_be_traced:\n        # Trace into this function\n        return trace_lines\n    return\n\n\ndef c(input):\n    print('input =', input)\n    print('Leaving c()')\n\n\ndef b(arg):\n    val = arg * 5\n    c(val)\n    print('Leaving b()')\n\n\ndef a():\n    b(2)\n    print('Leaving a()')\n\n\ntracer = functools.partial(trace_calls, to_be_traced=['b'])\nsys.settrace(tracer)\na()", '_ii': "import sys\n\n\ndef trace_calls(frame, event, arg):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    func_line_no = frame.f_lineno\n    func_filename = co.co_filename\n    caller = frame.f_back\n    caller_line_no = caller.f_lineno\n    caller_filename = caller.f_code.co_filename\n    print('* Call to', func_name)\n    print('*  on line {} of {}'.format(\n        func_line_no, func_filename))\n    print('*  from line {} of {}'.format(\n        caller_line_no, caller_filename))\n    return\n\n\ndef b():\n    print('inside b()\\n')\n\n\ndef a():\n    print('inside a()\\n')\n    b()\n\n\nsys.settrace(trace_calls)\na()", '_iii': '', '_i1': "import sys\n\n\ndef trace_calls(frame, event, arg):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    func_line_no = frame.f_lineno\n    func_filename = co.co_filename\n    caller = frame.f_back\n    caller_line_no = caller.f_lineno\n    caller_filename = caller.f_code.co_filename\n    print('* Call to', func_name)\n    print('*  on line {} of {}'.format(\n        func_line_no, func_filename))\n    print('*  from line {} of {}'.format(\n        caller_line_no, caller_filename))\n    return\n\n\ndef b():\n    print('inside b()\\n')\n\n\ndef a():\n    print('inside a()\\n')\n    b()\n\n\nsys.settrace(trace_calls)\na()", 'sys': <module 'sys' (built-in)>, 'trace_calls': <function trace_calls at 0x103387840>, 'b': <function b at 0x10337e620>, 'a': <function a at 0x103448400>, '_i2': "import functools\nimport sys\n\n\ndef trace_lines(frame, event, arg):\n    if event != 'line':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    line_no = frame.f_lineno\n    print('*  {} line {}'.format(func_name, line_no))\n\n\ndef trace_calls(frame, event, arg, to_be_traced):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    print('* Call to {} on line {} of {}'.format(\n        func_name, line_no, filename))\n    if func_name in to_be_traced:\n        # Trace into this function\n        return trace_lines\n    return\n\n\ndef c(input):\n    print('input =', input)\n    print('Leaving c()')\n\n\ndef b(arg):\n    val = arg * 5\n    c(val)\n    print('Leaving b()')\n\n\ndef a():\n    b(2)\n    print('Leaving a()')\n\n\ntracer = functools.partial(trace_calls, to_be_traced=['b'])\nsys.settrace(tracer)\na()", 'functools': <module 'functools' from '/Users/gaufung/anaconda/lib/python3.6/functools.py'>, 'trace_lines': <function trace_lines at 0x103377bf8>, 'c': <function c at 0x10330a378>, 'tracer': functools.partial(<function trace_calls at 0x103387840>, to_be_traced=['b']), '_i3': "import sys\n\n\ndef trace_calls_and_returns(frame, event, arg):\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    if event == 'call':\n        print('* Call to {} on line {} of {}'.format(\n            func_name, line_no, filename))\n        return trace_calls_and_returns\n    elif event == 'return':\n        print('* {} => {}'.format(func_name, arg))\n    return\n\n\ndef b():\n    print('inside b()')\n    return 'response_from_b '\n\n\ndef a():\n    print('inside a()')\n    val = b()\n    return val * 2\n\n\nsys.settrace(trace_calls_and_returns)\na()", 'trace_calls_and_returns': <function trace_calls_and_returns at 0x10337e8c8>}
* Call to <module> on line 33 of <ipython-input-3-2cb567cd54a7>
* Call to a on line 26 of <ipython-input-3-2cb567cd54a7>
* Call to _is_master_process on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _is_master_process => True
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>
inside a()* schedule => None
* Call to _schedule_flush on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _schedule_flush => None
* Call to _is_master_process on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _is_master_process => True
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>

* schedule => None
* Call to _schedule_flush on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _schedule_flush => None
* Call to b on line 21 of <ipython-input-3-2cb567cd54a7>
* Call to _is_master_process on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _is_master_process => True
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>
inside b()* schedule => None
* Call to _schedule_flush on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _schedule_flush => None
* Call to _is_master_process on line 285 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _is_master_process => True
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>

* schedule => None
* Call to _schedule_flush on line 298 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _schedule_flush => None
* b => response_from_b 
* a => response_from_b response_from_b 
* Call to __call__ on line 236 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/displayhook.py
* Call to check_for_underscore on line 72 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/displayhook.py
* check_for_underscore => None
* Call to quiet on line 83 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/displayhook.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.history.HistoryManager object at 0x1031a3b00>
* __get__ => <IPython.core.history.HistoryManager object at 0x1031a3b00>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => ['', "import sys\n\n\ndef trace_calls(frame, event, arg):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    func_line_no = frame.f_lineno\n    func_filename = co.co_filename\n    caller = frame.f_back\n    caller_line_no = caller.f_lineno\n    caller_filename = caller.f_code.co_filename\n    print('* Call to', func_name)\n    print('*  on line {} of {}'.format(\n        func_line_no, func_filename))\n    print('*  from line {} of {}'.format(\n        caller_line_no, caller_filename))\n    return\n\n\ndef b():\n    print('inside b()\\n')\n\n\ndef a():\n    print('inside a()\\n')\n    b()\n\n\nsys.settrace(trace_calls)\na()", "import functools\nimport sys\n\n\ndef trace_lines(frame, event, arg):\n    if event != 'line':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    line_no = frame.f_lineno\n    print('*  {} line {}'.format(func_name, line_no))\n\n\ndef trace_calls(frame, event, arg, to_be_traced):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    print('* Call to {} on line {} of {}'.format(\n        func_name, line_no, filename))\n    if func_name in to_be_traced:\n        # Trace into this function\n        return trace_lines\n    return\n\n\ndef c(input):\n    print('input =', input)\n    print('Leaving c()')\n\n\ndef b(arg):\n    val = arg * 5\n    c(val)\n    print('Leaving b()')\n\n\ndef a():\n    b(2)\n    print('Leaving a()')\n\n\ntracer = functools.partial(trace_calls, to_be_traced=['b'])\nsys.settrace(tracer)\na()", "import sys\n\n\ndef trace_calls_and_returns(frame, event, arg):\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    if event == 'call':\n        print('* Call to {} on line {} of {}'.format(\n            func_name, line_no, filename))\n        return trace_calls_and_returns\n    elif event == 'return':\n        print('* {} => {}'.format(func_name, arg))\n    return\n\n\ndef b():\n    print('inside b()')\n    return 'response_from_b '\n\n\ndef a():\n    print('inside a()')\n    val = b()\n    return val * 2\n\n\nsys.settrace(trace_calls_and_returns)\na()"]
* __get__ => ['', "import sys\n\n\ndef trace_calls(frame, event, arg):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    func_line_no = frame.f_lineno\n    func_filename = co.co_filename\n    caller = frame.f_back\n    caller_line_no = caller.f_lineno\n    caller_filename = caller.f_code.co_filename\n    print('* Call to', func_name)\n    print('*  on line {} of {}'.format(\n        func_line_no, func_filename))\n    print('*  from line {} of {}'.format(\n        caller_line_no, caller_filename))\n    return\n\n\ndef b():\n    print('inside b()\\n')\n\n\ndef a():\n    print('inside a()\\n')\n    b()\n\n\nsys.settrace(trace_calls)\na()", "import functools\nimport sys\n\n\ndef trace_lines(frame, event, arg):\n    if event != 'line':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    line_no = frame.f_lineno\n    print('*  {} line {}'.format(func_name, line_no))\n\n\ndef trace_calls(frame, event, arg, to_be_traced):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    print('* Call to {} on line {} of {}'.format(\n        func_name, line_no, filename))\n    if func_name in to_be_traced:\n        # Trace into this function\n        return trace_lines\n    return\n\n\ndef c(input):\n    print('input =', input)\n    print('Leaving c()')\n\n\ndef b(arg):\n    val = arg * 5\n    c(val)\n    print('Leaving b()')\n\n\ndef a():\n    b(2)\n    print('Leaving a()')\n\n\ntracer = functools.partial(trace_calls, to_be_traced=['b'])\nsys.settrace(tracer)\na()", "import sys\n\n\ndef trace_calls_and_returns(frame, event, arg):\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    if event == 'call':\n        print('* Call to {} on line {} of {}'.format(\n            func_name, line_no, filename))\n        return trace_calls_and_returns\n    elif event == 'return':\n        print('* {} => {}'.format(func_name, arg))\n    return\n\n\ndef b():\n    print('inside b()')\n    return 'response_from_b '\n\n\ndef a():\n    print('inside a()')\n    val = b()\n    return val * 2\n\n\nsys.settrace(trace_calls_and_returns)\na()"]
* Call to no_code on line 13 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* no_code => import sys


def trace_calls_and_returns(frame, event, arg):
    co = frame.f_code
    func_name = co.co_name
    if func_name == 'write':
        # Ignore write() calls from printing
        return
    line_no = frame.f_lineno
    filename = co.co_filename
    if event == 'call':
        print('* Call to {} on line {} of {}'.format(
            func_name, line_no, filename))
        return trace_calls_and_returns
    elif event == 'return':
        print('* {} => {}'.format(func_name, arg))
    return


def b():
    print('inside b()')
    return 'response_from_b '


def a():
    print('inside a()')
    val = b()
    return val * 2


sys.settrace(trace_calls_and_returns)
a()
* Call to generate_tokens on line 729 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* generate_tokens => <generator object _tokenize at 0x1032d4990>
* Call to _tokenize on line 492 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='import', start=(1, 0), end=(1, 6), line='import sys\n')
* _tokenize => TokenInfo(type=1 (NAME), string='import', start=(1, 0), end=(1, 6), line='import sys\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='sys', start=(1, 7), end=(1, 10), line='import sys\n')
* _tokenize => TokenInfo(type=1 (NAME), string='sys', start=(1, 7), end=(1, 10), line='import sys\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(1, 10), end=(1, 11), line='import sys\n')
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(1, 10), end=(1, 11), line='import sys\n')
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=58 (NL), string='\n', start=(2, 0), end=(2, 1), line='\n')
* _tokenize => TokenInfo(type=58 (NL), string='\n', start=(2, 0), end=(2, 1), line='\n')
* Call to _tokenize on line 568 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=58 (NL), string='\n', start=(3, 0), end=(3, 1), line='\n')
* _tokenize => TokenInfo(type=58 (NL), string='\n', start=(3, 0), end=(3, 1), line='\n')
* Call to _tokenize on line 568 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='def', start=(4, 0), end=(4, 3), line='def trace_calls_and_returns(frame, event, arg):\n')
* _tokenize => TokenInfo(type=1 (NAME), string='def', start=(4, 0), end=(4, 3), line='def trace_calls_and_returns(frame, event, arg):\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='trace_calls_and_returns', start=(4, 4), end=(4, 27), line='def trace_calls_and_returns(frame, event, arg):\n')
* _tokenize => TokenInfo(type=1 (NAME), string='trace_calls_and_returns', start=(4, 4), end=(4, 27), line='def trace_calls_and_returns(frame, event, arg):\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='(', start=(4, 27), end=(4, 28), line='def trace_calls_and_returns(frame, event, arg):\n')
* _tokenize => TokenInfo(type=53 (OP), string='(', start=(4, 27), end=(4, 28), line='def trace_calls_and_returns(frame, event, arg):\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='frame', start=(4, 28), end=(4, 33), line='def trace_calls_and_returns(frame, event, arg):\n')
* _tokenize => TokenInfo(type=1 (NAME), string='frame', start=(4, 28), end=(4, 33), line='def trace_calls_and_returns(frame, event, arg):\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=',', start=(4, 33), end=(4, 34), line='def trace_calls_and_returns(frame, event, arg):\n')
* _tokenize => TokenInfo(type=53 (OP), string=',', start=(4, 33), end=(4, 34), line='def trace_calls_and_returns(frame, event, arg):\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='event', start=(4, 35), end=(4, 40), line='def trace_calls_and_returns(frame, event, arg):\n')
* _tokenize => TokenInfo(type=1 (NAME), string='event', start=(4, 35), end=(4, 40), line='def trace_calls_and_returns(frame, event, arg):\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=',', start=(4, 40), end=(4, 41), line='def trace_calls_and_returns(frame, event, arg):\n')
* _tokenize => TokenInfo(type=53 (OP), string=',', start=(4, 40), end=(4, 41), line='def trace_calls_and_returns(frame, event, arg):\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='arg', start=(4, 42), end=(4, 45), line='def trace_calls_and_returns(frame, event, arg):\n')
* _tokenize => TokenInfo(type=1 (NAME), string='arg', start=(4, 42), end=(4, 45), line='def trace_calls_and_returns(frame, event, arg):\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=')', start=(4, 45), end=(4, 46), line='def trace_calls_and_returns(frame, event, arg):\n')
* _tokenize => TokenInfo(type=53 (OP), string=')', start=(4, 45), end=(4, 46), line='def trace_calls_and_returns(frame, event, arg):\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=':', start=(4, 46), end=(4, 47), line='def trace_calls_and_returns(frame, event, arg):\n')
* _tokenize => TokenInfo(type=53 (OP), string=':', start=(4, 46), end=(4, 47), line='def trace_calls_and_returns(frame, event, arg):\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(4, 47), end=(4, 48), line='def trace_calls_and_returns(frame, event, arg):\n')
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(4, 47), end=(4, 48), line='def trace_calls_and_returns(frame, event, arg):\n')
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=5 (INDENT), string='    ', start=(5, 0), end=(5, 4), line='    co = frame.f_code\n')
* _tokenize => TokenInfo(type=5 (INDENT), string='    ', start=(5, 0), end=(5, 4), line='    co = frame.f_code\n')
* Call to _tokenize on line 573 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='co', start=(5, 4), end=(5, 6), line='    co = frame.f_code\n')
* _tokenize => TokenInfo(type=1 (NAME), string='co', start=(5, 4), end=(5, 6), line='    co = frame.f_code\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='=', start=(5, 7), end=(5, 8), line='    co = frame.f_code\n')
* _tokenize => TokenInfo(type=53 (OP), string='=', start=(5, 7), end=(5, 8), line='    co = frame.f_code\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='frame', start=(5, 9), end=(5, 14), line='    co = frame.f_code\n')
* _tokenize => TokenInfo(type=1 (NAME), string='frame', start=(5, 9), end=(5, 14), line='    co = frame.f_code\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='.', start=(5, 14), end=(5, 15), line='    co = frame.f_code\n')
* _tokenize => TokenInfo(type=53 (OP), string='.', start=(5, 14), end=(5, 15), line='    co = frame.f_code\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='f_code', start=(5, 15), end=(5, 21), line='    co = frame.f_code\n')
* _tokenize => TokenInfo(type=1 (NAME), string='f_code', start=(5, 15), end=(5, 21), line='    co = frame.f_code\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(5, 21), end=(5, 22), line='    co = frame.f_code\n')
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(5, 21), end=(5, 22), line='    co = frame.f_code\n')
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='func_name', start=(6, 4), end=(6, 13), line='    func_name = co.co_name\n')
* _tokenize => TokenInfo(type=1 (NAME), string='func_name', start=(6, 4), end=(6, 13), line='    func_name = co.co_name\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='=', start=(6, 14), end=(6, 15), line='    func_name = co.co_name\n')
* _tokenize => TokenInfo(type=53 (OP), string='=', start=(6, 14), end=(6, 15), line='    func_name = co.co_name\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='co', start=(6, 16), end=(6, 18), line='    func_name = co.co_name\n')
* _tokenize => TokenInfo(type=1 (NAME), string='co', start=(6, 16), end=(6, 18), line='    func_name = co.co_name\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='.', start=(6, 18), end=(6, 19), line='    func_name = co.co_name\n')
* _tokenize => TokenInfo(type=53 (OP), string='.', start=(6, 18), end=(6, 19), line='    func_name = co.co_name\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='co_name', start=(6, 19), end=(6, 26), line='    func_name = co.co_name\n')
* _tokenize => TokenInfo(type=1 (NAME), string='co_name', start=(6, 19), end=(6, 26), line='    func_name = co.co_name\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(6, 26), end=(6, 27), line='    func_name = co.co_name\n')
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(6, 26), end=(6, 27), line='    func_name = co.co_name\n')
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='if', start=(7, 4), end=(7, 6), line="    if func_name == 'write':\n")
* _tokenize => TokenInfo(type=1 (NAME), string='if', start=(7, 4), end=(7, 6), line="    if func_name == 'write':\n")
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='func_name', start=(7, 7), end=(7, 16), line="    if func_name == 'write':\n")
* _tokenize => TokenInfo(type=1 (NAME), string='func_name', start=(7, 7), end=(7, 16), line="    if func_name == 'write':\n")
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='==', start=(7, 17), end=(7, 19), line="    if func_name == 'write':\n")
* _tokenize => TokenInfo(type=53 (OP), string='==', start=(7, 17), end=(7, 19), line="    if func_name == 'write':\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=3 (STRING), string="'write'", start=(7, 20), end=(7, 27), line="    if func_name == 'write':\n")
* _tokenize => TokenInfo(type=3 (STRING), string="'write'", start=(7, 20), end=(7, 27), line="    if func_name == 'write':\n")
* Call to _tokenize on line 669 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=':', start=(7, 27), end=(7, 28), line="    if func_name == 'write':\n")
* _tokenize => TokenInfo(type=53 (OP), string=':', start=(7, 27), end=(7, 28), line="    if func_name == 'write':\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(7, 28), end=(7, 29), line="    if func_name == 'write':\n")
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(7, 28), end=(7, 29), line="    if func_name == 'write':\n")
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=57 (COMMENT), string='# Ignore write() calls from printing', start=(8, 8), end=(8, 44), line='        # Ignore write() calls from printing\n')
* _tokenize => TokenInfo(type=57 (COMMENT), string='# Ignore write() calls from printing', start=(8, 8), end=(8, 44), line='        # Ignore write() calls from printing\n')
* Call to _tokenize on line 563 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=58 (NL), string='\n', start=(8, 44), end=(8, 45), line='        # Ignore write() calls from printing\n')
* _tokenize => TokenInfo(type=58 (NL), string='\n', start=(8, 44), end=(8, 45), line='        # Ignore write() calls from printing\n')
* Call to _tokenize on line 565 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=5 (INDENT), string='        ', start=(9, 0), end=(9, 8), line='        return\n')
* _tokenize => TokenInfo(type=5 (INDENT), string='        ', start=(9, 0), end=(9, 8), line='        return\n')
* Call to _tokenize on line 573 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='return', start=(9, 8), end=(9, 14), line='        return\n')
* _tokenize => TokenInfo(type=1 (NAME), string='return', start=(9, 8), end=(9, 14), line='        return\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(9, 14), end=(9, 15), line='        return\n')
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(9, 14), end=(9, 15), line='        return\n')
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=6 (DEDENT), string='', start=(10, 4), end=(10, 4), line='    line_no = frame.f_lineno\n')
* _tokenize => TokenInfo(type=6 (DEDENT), string='', start=(10, 4), end=(10, 4), line='    line_no = frame.f_lineno\n')
* Call to _tokenize on line 586 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='line_no', start=(10, 4), end=(10, 11), line='    line_no = frame.f_lineno\n')
* _tokenize => TokenInfo(type=1 (NAME), string='line_no', start=(10, 4), end=(10, 11), line='    line_no = frame.f_lineno\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='=', start=(10, 12), end=(10, 13), line='    line_no = frame.f_lineno\n')
* _tokenize => TokenInfo(type=53 (OP), string='=', start=(10, 12), end=(10, 13), line='    line_no = frame.f_lineno\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='frame', start=(10, 14), end=(10, 19), line='    line_no = frame.f_lineno\n')
* _tokenize => TokenInfo(type=1 (NAME), string='frame', start=(10, 14), end=(10, 19), line='    line_no = frame.f_lineno\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='.', start=(10, 19), end=(10, 20), line='    line_no = frame.f_lineno\n')
* _tokenize => TokenInfo(type=53 (OP), string='.', start=(10, 19), end=(10, 20), line='    line_no = frame.f_lineno\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='f_lineno', start=(10, 20), end=(10, 28), line='    line_no = frame.f_lineno\n')
* _tokenize => TokenInfo(type=1 (NAME), string='f_lineno', start=(10, 20), end=(10, 28), line='    line_no = frame.f_lineno\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(10, 28), end=(10, 29), line='    line_no = frame.f_lineno\n')
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(10, 28), end=(10, 29), line='    line_no = frame.f_lineno\n')
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='filename', start=(11, 4), end=(11, 12), line='    filename = co.co_filename\n')
* _tokenize => TokenInfo(type=1 (NAME), string='filename', start=(11, 4), end=(11, 12), line='    filename = co.co_filename\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='=', start=(11, 13), end=(11, 14), line='    filename = co.co_filename\n')
* _tokenize => TokenInfo(type=53 (OP), string='=', start=(11, 13), end=(11, 14), line='    filename = co.co_filename\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='co', start=(11, 15), end=(11, 17), line='    filename = co.co_filename\n')
* _tokenize => TokenInfo(type=1 (NAME), string='co', start=(11, 15), end=(11, 17), line='    filename = co.co_filename\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='.', start=(11, 17), end=(11, 18), line='    filename = co.co_filename\n')
* _tokenize => TokenInfo(type=53 (OP), string='.', start=(11, 17), end=(11, 18), line='    filename = co.co_filename\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='co_filename', start=(11, 18), end=(11, 29), line='    filename = co.co_filename\n')
* _tokenize => TokenInfo(type=1 (NAME), string='co_filename', start=(11, 18), end=(11, 29), line='    filename = co.co_filename\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(11, 29), end=(11, 30), line='    filename = co.co_filename\n')
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(11, 29), end=(11, 30), line='    filename = co.co_filename\n')
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='if', start=(12, 4), end=(12, 6), line="    if event == 'call':\n")
* _tokenize => TokenInfo(type=1 (NAME), string='if', start=(12, 4), end=(12, 6), line="    if event == 'call':\n")
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='event', start=(12, 7), end=(12, 12), line="    if event == 'call':\n")
* _tokenize => TokenInfo(type=1 (NAME), string='event', start=(12, 7), end=(12, 12), line="    if event == 'call':\n")
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='==', start=(12, 13), end=(12, 15), line="    if event == 'call':\n")
* _tokenize => TokenInfo(type=53 (OP), string='==', start=(12, 13), end=(12, 15), line="    if event == 'call':\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=3 (STRING), string="'call'", start=(12, 16), end=(12, 22), line="    if event == 'call':\n")
* _tokenize => TokenInfo(type=3 (STRING), string="'call'", start=(12, 16), end=(12, 22), line="    if event == 'call':\n")
* Call to _tokenize on line 669 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=':', start=(12, 22), end=(12, 23), line="    if event == 'call':\n")
* _tokenize => TokenInfo(type=53 (OP), string=':', start=(12, 22), end=(12, 23), line="    if event == 'call':\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(12, 23), end=(12, 24), line="    if event == 'call':\n")
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(12, 23), end=(12, 24), line="    if event == 'call':\n")
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=5 (INDENT), string='        ', start=(13, 0), end=(13, 8), line="        print('* Call to {} on line {} of {}'.format(\n")
* _tokenize => TokenInfo(type=5 (INDENT), string='        ', start=(13, 0), end=(13, 8), line="        print('* Call to {} on line {} of {}'.format(\n")
* Call to _tokenize on line 573 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='print', start=(13, 8), end=(13, 13), line="        print('* Call to {} on line {} of {}'.format(\n")
* _tokenize => TokenInfo(type=1 (NAME), string='print', start=(13, 8), end=(13, 13), line="        print('* Call to {} on line {} of {}'.format(\n")
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='(', start=(13, 13), end=(13, 14), line="        print('* Call to {} on line {} of {}'.format(\n")
* _tokenize => TokenInfo(type=53 (OP), string='(', start=(13, 13), end=(13, 14), line="        print('* Call to {} on line {} of {}'.format(\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=3 (STRING), string="'* Call to {} on line {} of {}'", start=(13, 14), end=(13, 45), line="        print('* Call to {} on line {} of {}'.format(\n")
* _tokenize => TokenInfo(type=3 (STRING), string="'* Call to {} on line {} of {}'", start=(13, 14), end=(13, 45), line="        print('* Call to {} on line {} of {}'.format(\n")
* Call to _tokenize on line 669 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='.', start=(13, 45), end=(13, 46), line="        print('* Call to {} on line {} of {}'.format(\n")
* _tokenize => TokenInfo(type=53 (OP), string='.', start=(13, 45), end=(13, 46), line="        print('* Call to {} on line {} of {}'.format(\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='format', start=(13, 46), end=(13, 52), line="        print('* Call to {} on line {} of {}'.format(\n")
* _tokenize => TokenInfo(type=1 (NAME), string='format', start=(13, 46), end=(13, 52), line="        print('* Call to {} on line {} of {}'.format(\n")
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='(', start=(13, 52), end=(13, 53), line="        print('* Call to {} on line {} of {}'.format(\n")
* _tokenize => TokenInfo(type=53 (OP), string='(', start=(13, 52), end=(13, 53), line="        print('* Call to {} on line {} of {}'.format(\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=58 (NL), string='\n', start=(13, 53), end=(13, 54), line="        print('* Call to {} on line {} of {}'.format(\n")
* _tokenize => TokenInfo(type=58 (NL), string='\n', start=(13, 53), end=(13, 54), line="        print('* Call to {} on line {} of {}'.format(\n")
* Call to _tokenize on line 615 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='func_name', start=(14, 12), end=(14, 21), line='            func_name, line_no, filename))\n')
* _tokenize => TokenInfo(type=1 (NAME), string='func_name', start=(14, 12), end=(14, 21), line='            func_name, line_no, filename))\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=',', start=(14, 21), end=(14, 22), line='            func_name, line_no, filename))\n')
* _tokenize => TokenInfo(type=53 (OP), string=',', start=(14, 21), end=(14, 22), line='            func_name, line_no, filename))\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='line_no', start=(14, 23), end=(14, 30), line='            func_name, line_no, filename))\n')
* _tokenize => TokenInfo(type=1 (NAME), string='line_no', start=(14, 23), end=(14, 30), line='            func_name, line_no, filename))\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=',', start=(14, 30), end=(14, 31), line='            func_name, line_no, filename))\n')
* _tokenize => TokenInfo(type=53 (OP), string=',', start=(14, 30), end=(14, 31), line='            func_name, line_no, filename))\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='filename', start=(14, 32), end=(14, 40), line='            func_name, line_no, filename))\n')
* _tokenize => TokenInfo(type=1 (NAME), string='filename', start=(14, 32), end=(14, 40), line='            func_name, line_no, filename))\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=')', start=(14, 40), end=(14, 41), line='            func_name, line_no, filename))\n')
* _tokenize => TokenInfo(type=53 (OP), string=')', start=(14, 40), end=(14, 41), line='            func_name, line_no, filename))\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=')', start=(14, 41), end=(14, 42), line='            func_name, line_no, filename))\n')
* _tokenize => TokenInfo(type=53 (OP), string=')', start=(14, 41), end=(14, 42), line='            func_name, line_no, filename))\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(14, 42), end=(14, 43), line='            func_name, line_no, filename))\n')
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(14, 42), end=(14, 43), line='            func_name, line_no, filename))\n')
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='return', start=(15, 8), end=(15, 14), line='        return trace_calls_and_returns\n')
* _tokenize => TokenInfo(type=1 (NAME), string='return', start=(15, 8), end=(15, 14), line='        return trace_calls_and_returns\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='trace_calls_and_returns', start=(15, 15), end=(15, 38), line='        return trace_calls_and_returns\n')
* _tokenize => TokenInfo(type=1 (NAME), string='trace_calls_and_returns', start=(15, 15), end=(15, 38), line='        return trace_calls_and_returns\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(15, 38), end=(15, 39), line='        return trace_calls_and_returns\n')
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(15, 38), end=(15, 39), line='        return trace_calls_and_returns\n')
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=6 (DEDENT), string='', start=(16, 4), end=(16, 4), line="    elif event == 'return':\n")
* _tokenize => TokenInfo(type=6 (DEDENT), string='', start=(16, 4), end=(16, 4), line="    elif event == 'return':\n")
* Call to _tokenize on line 586 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='elif', start=(16, 4), end=(16, 8), line="    elif event == 'return':\n")
* _tokenize => TokenInfo(type=1 (NAME), string='elif', start=(16, 4), end=(16, 8), line="    elif event == 'return':\n")
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='event', start=(16, 9), end=(16, 14), line="    elif event == 'return':\n")
* _tokenize => TokenInfo(type=1 (NAME), string='event', start=(16, 9), end=(16, 14), line="    elif event == 'return':\n")
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='==', start=(16, 15), end=(16, 17), line="    elif event == 'return':\n")
* _tokenize => TokenInfo(type=53 (OP), string='==', start=(16, 15), end=(16, 17), line="    elif event == 'return':\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=3 (STRING), string="'return'", start=(16, 18), end=(16, 26), line="    elif event == 'return':\n")
* _tokenize => TokenInfo(type=3 (STRING), string="'return'", start=(16, 18), end=(16, 26), line="    elif event == 'return':\n")
* Call to _tokenize on line 669 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=':', start=(16, 26), end=(16, 27), line="    elif event == 'return':\n")
* _tokenize => TokenInfo(type=53 (OP), string=':', start=(16, 26), end=(16, 27), line="    elif event == 'return':\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(16, 27), end=(16, 28), line="    elif event == 'return':\n")
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(16, 27), end=(16, 28), line="    elif event == 'return':\n")
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=5 (INDENT), string='        ', start=(17, 0), end=(17, 8), line="        print('* {} => {}'.format(func_name, arg))\n")
* _tokenize => TokenInfo(type=5 (INDENT), string='        ', start=(17, 0), end=(17, 8), line="        print('* {} => {}'.format(func_name, arg))\n")
* Call to _tokenize on line 573 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='print', start=(17, 8), end=(17, 13), line="        print('* {} => {}'.format(func_name, arg))\n")
* _tokenize => TokenInfo(type=1 (NAME), string='print', start=(17, 8), end=(17, 13), line="        print('* {} => {}'.format(func_name, arg))\n")
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='(', start=(17, 13), end=(17, 14), line="        print('* {} => {}'.format(func_name, arg))\n")
* _tokenize => TokenInfo(type=53 (OP), string='(', start=(17, 13), end=(17, 14), line="        print('* {} => {}'.format(func_name, arg))\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=3 (STRING), string="'* {} => {}'", start=(17, 14), end=(17, 26), line="        print('* {} => {}'.format(func_name, arg))\n")
* _tokenize => TokenInfo(type=3 (STRING), string="'* {} => {}'", start=(17, 14), end=(17, 26), line="        print('* {} => {}'.format(func_name, arg))\n")
* Call to _tokenize on line 669 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='.', start=(17, 26), end=(17, 27), line="        print('* {} => {}'.format(func_name, arg))\n")
* _tokenize => TokenInfo(type=53 (OP), string='.', start=(17, 26), end=(17, 27), line="        print('* {} => {}'.format(func_name, arg))\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='format', start=(17, 27), end=(17, 33), line="        print('* {} => {}'.format(func_name, arg))\n")
* _tokenize => TokenInfo(type=1 (NAME), string='format', start=(17, 27), end=(17, 33), line="        print('* {} => {}'.format(func_name, arg))\n")
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='(', start=(17, 33), end=(17, 34), line="        print('* {} => {}'.format(func_name, arg))\n")
* _tokenize => TokenInfo(type=53 (OP), string='(', start=(17, 33), end=(17, 34), line="        print('* {} => {}'.format(func_name, arg))\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='func_name', start=(17, 34), end=(17, 43), line="        print('* {} => {}'.format(func_name, arg))\n")
* _tokenize => TokenInfo(type=1 (NAME), string='func_name', start=(17, 34), end=(17, 43), line="        print('* {} => {}'.format(func_name, arg))\n")
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=',', start=(17, 43), end=(17, 44), line="        print('* {} => {}'.format(func_name, arg))\n")
* _tokenize => TokenInfo(type=53 (OP), string=',', start=(17, 43), end=(17, 44), line="        print('* {} => {}'.format(func_name, arg))\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='arg', start=(17, 45), end=(17, 48), line="        print('* {} => {}'.format(func_name, arg))\n")
* _tokenize => TokenInfo(type=1 (NAME), string='arg', start=(17, 45), end=(17, 48), line="        print('* {} => {}'.format(func_name, arg))\n")
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=')', start=(17, 48), end=(17, 49), line="        print('* {} => {}'.format(func_name, arg))\n")
* _tokenize => TokenInfo(type=53 (OP), string=')', start=(17, 48), end=(17, 49), line="        print('* {} => {}'.format(func_name, arg))\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=')', start=(17, 49), end=(17, 50), line="        print('* {} => {}'.format(func_name, arg))\n")
* _tokenize => TokenInfo(type=53 (OP), string=')', start=(17, 49), end=(17, 50), line="        print('* {} => {}'.format(func_name, arg))\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(17, 50), end=(17, 51), line="        print('* {} => {}'.format(func_name, arg))\n")
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(17, 50), end=(17, 51), line="        print('* {} => {}'.format(func_name, arg))\n")
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=6 (DEDENT), string='', start=(18, 4), end=(18, 4), line='    return\n')
* _tokenize => TokenInfo(type=6 (DEDENT), string='', start=(18, 4), end=(18, 4), line='    return\n')
* Call to _tokenize on line 586 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='return', start=(18, 4), end=(18, 10), line='    return\n')
* _tokenize => TokenInfo(type=1 (NAME), string='return', start=(18, 4), end=(18, 10), line='    return\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(18, 10), end=(18, 11), line='    return\n')
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(18, 10), end=(18, 11), line='    return\n')
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=58 (NL), string='\n', start=(19, 0), end=(19, 1), line='\n')
* _tokenize => TokenInfo(type=58 (NL), string='\n', start=(19, 0), end=(19, 1), line='\n')
* Call to _tokenize on line 568 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=58 (NL), string='\n', start=(20, 0), end=(20, 1), line='\n')
* _tokenize => TokenInfo(type=58 (NL), string='\n', start=(20, 0), end=(20, 1), line='\n')
* Call to _tokenize on line 568 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=6 (DEDENT), string='', start=(21, 0), end=(21, 0), line='def b():\n')
* _tokenize => TokenInfo(type=6 (DEDENT), string='', start=(21, 0), end=(21, 0), line='def b():\n')
* Call to _tokenize on line 586 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='def', start=(21, 0), end=(21, 3), line='def b():\n')
* _tokenize => TokenInfo(type=1 (NAME), string='def', start=(21, 0), end=(21, 3), line='def b():\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='b', start=(21, 4), end=(21, 5), line='def b():\n')
* _tokenize => TokenInfo(type=1 (NAME), string='b', start=(21, 4), end=(21, 5), line='def b():\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='(', start=(21, 5), end=(21, 6), line='def b():\n')
* _tokenize => TokenInfo(type=53 (OP), string='(', start=(21, 5), end=(21, 6), line='def b():\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=')', start=(21, 6), end=(21, 7), line='def b():\n')
* _tokenize => TokenInfo(type=53 (OP), string=')', start=(21, 6), end=(21, 7), line='def b():\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=':', start=(21, 7), end=(21, 8), line='def b():\n')
* _tokenize => TokenInfo(type=53 (OP), string=':', start=(21, 7), end=(21, 8), line='def b():\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(21, 8), end=(21, 9), line='def b():\n')
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(21, 8), end=(21, 9), line='def b():\n')
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=5 (INDENT), string='    ', start=(22, 0), end=(22, 4), line="    print('inside b()')\n")
* _tokenize => TokenInfo(type=5 (INDENT), string='    ', start=(22, 0), end=(22, 4), line="    print('inside b()')\n")
* Call to _tokenize on line 573 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='print', start=(22, 4), end=(22, 9), line="    print('inside b()')\n")
* _tokenize => TokenInfo(type=1 (NAME), string='print', start=(22, 4), end=(22, 9), line="    print('inside b()')\n")
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='(', start=(22, 9), end=(22, 10), line="    print('inside b()')\n")
* _tokenize => TokenInfo(type=53 (OP), string='(', start=(22, 9), end=(22, 10), line="    print('inside b()')\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=3 (STRING), string="'inside b()'", start=(22, 10), end=(22, 22), line="    print('inside b()')\n")
* _tokenize => TokenInfo(type=3 (STRING), string="'inside b()'", start=(22, 10), end=(22, 22), line="    print('inside b()')\n")
* Call to _tokenize on line 669 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=')', start=(22, 22), end=(22, 23), line="    print('inside b()')\n")
* _tokenize => TokenInfo(type=53 (OP), string=')', start=(22, 22), end=(22, 23), line="    print('inside b()')\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(22, 23), end=(22, 24), line="    print('inside b()')\n")
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(22, 23), end=(22, 24), line="    print('inside b()')\n")
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='return', start=(23, 4), end=(23, 10), line="    return 'response_from_b '\n")
* _tokenize => TokenInfo(type=1 (NAME), string='return', start=(23, 4), end=(23, 10), line="    return 'response_from_b '\n")
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=3 (STRING), string="'response_from_b '", start=(23, 11), end=(23, 29), line="    return 'response_from_b '\n")
* _tokenize => TokenInfo(type=3 (STRING), string="'response_from_b '", start=(23, 11), end=(23, 29), line="    return 'response_from_b '\n")
* Call to _tokenize on line 669 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(23, 29), end=(23, 30), line="    return 'response_from_b '\n")
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(23, 29), end=(23, 30), line="    return 'response_from_b '\n")
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=58 (NL), string='\n', start=(24, 0), end=(24, 1), line='\n')
* _tokenize => TokenInfo(type=58 (NL), string='\n', start=(24, 0), end=(24, 1), line='\n')
* Call to _tokenize on line 568 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=58 (NL), string='\n', start=(25, 0), end=(25, 1), line='\n')
* _tokenize => TokenInfo(type=58 (NL), string='\n', start=(25, 0), end=(25, 1), line='\n')
* Call to _tokenize on line 568 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=6 (DEDENT), string='', start=(26, 0), end=(26, 0), line='def a():\n')
* _tokenize => TokenInfo(type=6 (DEDENT), string='', start=(26, 0), end=(26, 0), line='def a():\n')
* Call to _tokenize on line 586 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='def', start=(26, 0), end=(26, 3), line='def a():\n')
* _tokenize => TokenInfo(type=1 (NAME), string='def', start=(26, 0), end=(26, 3), line='def a():\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='a', start=(26, 4), end=(26, 5), line='def a():\n')
* _tokenize => TokenInfo(type=1 (NAME), string='a', start=(26, 4), end=(26, 5), line='def a():\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='(', start=(26, 5), end=(26, 6), line='def a():\n')
* _tokenize => TokenInfo(type=53 (OP), string='(', start=(26, 5), end=(26, 6), line='def a():\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=')', start=(26, 6), end=(26, 7), line='def a():\n')
* _tokenize => TokenInfo(type=53 (OP), string=')', start=(26, 6), end=(26, 7), line='def a():\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=':', start=(26, 7), end=(26, 8), line='def a():\n')
* _tokenize => TokenInfo(type=53 (OP), string=':', start=(26, 7), end=(26, 8), line='def a():\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(26, 8), end=(26, 9), line='def a():\n')
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(26, 8), end=(26, 9), line='def a():\n')
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=5 (INDENT), string='    ', start=(27, 0), end=(27, 4), line="    print('inside a()')\n")
* _tokenize => TokenInfo(type=5 (INDENT), string='    ', start=(27, 0), end=(27, 4), line="    print('inside a()')\n")
* Call to _tokenize on line 573 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='print', start=(27, 4), end=(27, 9), line="    print('inside a()')\n")
* _tokenize => TokenInfo(type=1 (NAME), string='print', start=(27, 4), end=(27, 9), line="    print('inside a()')\n")
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='(', start=(27, 9), end=(27, 10), line="    print('inside a()')\n")
* _tokenize => TokenInfo(type=53 (OP), string='(', start=(27, 9), end=(27, 10), line="    print('inside a()')\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=3 (STRING), string="'inside a()'", start=(27, 10), end=(27, 22), line="    print('inside a()')\n")
* _tokenize => TokenInfo(type=3 (STRING), string="'inside a()'", start=(27, 10), end=(27, 22), line="    print('inside a()')\n")
* Call to _tokenize on line 669 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=')', start=(27, 22), end=(27, 23), line="    print('inside a()')\n")
* _tokenize => TokenInfo(type=53 (OP), string=')', start=(27, 22), end=(27, 23), line="    print('inside a()')\n")
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(27, 23), end=(27, 24), line="    print('inside a()')\n")
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(27, 23), end=(27, 24), line="    print('inside a()')\n")
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='val', start=(28, 4), end=(28, 7), line='    val = b()\n')
* _tokenize => TokenInfo(type=1 (NAME), string='val', start=(28, 4), end=(28, 7), line='    val = b()\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='=', start=(28, 8), end=(28, 9), line='    val = b()\n')
* _tokenize => TokenInfo(type=53 (OP), string='=', start=(28, 8), end=(28, 9), line='    val = b()\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='b', start=(28, 10), end=(28, 11), line='    val = b()\n')
* _tokenize => TokenInfo(type=1 (NAME), string='b', start=(28, 10), end=(28, 11), line='    val = b()\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='(', start=(28, 11), end=(28, 12), line='    val = b()\n')
* _tokenize => TokenInfo(type=53 (OP), string='(', start=(28, 11), end=(28, 12), line='    val = b()\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=')', start=(28, 12), end=(28, 13), line='    val = b()\n')
* _tokenize => TokenInfo(type=53 (OP), string=')', start=(28, 12), end=(28, 13), line='    val = b()\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(28, 13), end=(28, 14), line='    val = b()\n')
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(28, 13), end=(28, 14), line='    val = b()\n')
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='return', start=(29, 4), end=(29, 10), line='    return val * 2\n')
* _tokenize => TokenInfo(type=1 (NAME), string='return', start=(29, 4), end=(29, 10), line='    return val * 2\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='val', start=(29, 11), end=(29, 14), line='    return val * 2\n')
* _tokenize => TokenInfo(type=1 (NAME), string='val', start=(29, 11), end=(29, 14), line='    return val * 2\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='*', start=(29, 15), end=(29, 16), line='    return val * 2\n')
* _tokenize => TokenInfo(type=53 (OP), string='*', start=(29, 15), end=(29, 16), line='    return val * 2\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=2 (NUMBER), string='2', start=(29, 17), end=(29, 18), line='    return val * 2\n')
* _tokenize => TokenInfo(type=2 (NUMBER), string='2', start=(29, 17), end=(29, 18), line='    return val * 2\n')
* Call to _tokenize on line 609 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(29, 18), end=(29, 19), line='    return val * 2\n')
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(29, 18), end=(29, 19), line='    return val * 2\n')
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=58 (NL), string='\n', start=(30, 0), end=(30, 1), line='\n')
* _tokenize => TokenInfo(type=58 (NL), string='\n', start=(30, 0), end=(30, 1), line='\n')
* Call to _tokenize on line 568 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=58 (NL), string='\n', start=(31, 0), end=(31, 1), line='\n')
* _tokenize => TokenInfo(type=58 (NL), string='\n', start=(31, 0), end=(31, 1), line='\n')
* Call to _tokenize on line 568 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=6 (DEDENT), string='', start=(32, 0), end=(32, 0), line='sys.settrace(trace_calls_and_returns)\n')
* _tokenize => TokenInfo(type=6 (DEDENT), string='', start=(32, 0), end=(32, 0), line='sys.settrace(trace_calls_and_returns)\n')
* Call to _tokenize on line 586 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='sys', start=(32, 0), end=(32, 3), line='sys.settrace(trace_calls_and_returns)\n')
* _tokenize => TokenInfo(type=1 (NAME), string='sys', start=(32, 0), end=(32, 3), line='sys.settrace(trace_calls_and_returns)\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='.', start=(32, 3), end=(32, 4), line='sys.settrace(trace_calls_and_returns)\n')
* _tokenize => TokenInfo(type=53 (OP), string='.', start=(32, 3), end=(32, 4), line='sys.settrace(trace_calls_and_returns)\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='settrace', start=(32, 4), end=(32, 12), line='sys.settrace(trace_calls_and_returns)\n')
* _tokenize => TokenInfo(type=1 (NAME), string='settrace', start=(32, 4), end=(32, 12), line='sys.settrace(trace_calls_and_returns)\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='(', start=(32, 12), end=(32, 13), line='sys.settrace(trace_calls_and_returns)\n')
* _tokenize => TokenInfo(type=53 (OP), string='(', start=(32, 12), end=(32, 13), line='sys.settrace(trace_calls_and_returns)\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='trace_calls_and_returns', start=(32, 13), end=(32, 36), line='sys.settrace(trace_calls_and_returns)\n')
* _tokenize => TokenInfo(type=1 (NAME), string='trace_calls_and_returns', start=(32, 13), end=(32, 36), line='sys.settrace(trace_calls_and_returns)\n')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=')', start=(32, 36), end=(32, 37), line='sys.settrace(trace_calls_and_returns)\n')
* _tokenize => TokenInfo(type=53 (OP), string=')', start=(32, 36), end=(32, 37), line='sys.settrace(trace_calls_and_returns)\n')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=4 (NEWLINE), string='\n', start=(32, 37), end=(32, 38), line='sys.settrace(trace_calls_and_returns)\n')
* _tokenize => TokenInfo(type=4 (NEWLINE), string='\n', start=(32, 37), end=(32, 38), line='sys.settrace(trace_calls_and_returns)\n')
* Call to _tokenize on line 617 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=1 (NAME), string='a', start=(33, 0), end=(33, 1), line='a()')
* _tokenize => TokenInfo(type=1 (NAME), string='a', start=(33, 0), end=(33, 1), line='a()')
* Call to _tokenize on line 701 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string='(', start=(33, 1), end=(33, 2), line='a()')
* _tokenize => TokenInfo(type=53 (OP), string='(', start=(33, 1), end=(33, 2), line='a()')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to _compile on line 152 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to compile on line 231 of /Users/gaufung/anaconda/lib/python3.6/re.py
* Call to _compile on line 286 of /Users/gaufung/anaconda/lib/python3.6/re.py
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* _compile => re.compile('[ \\f\\t]*((\\\\\\r?\\n|\\Z|#[^\\r\\n]*|((|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)\'\'\'|(|u|b|f|Rf|fR|bR|r|BR|F|br|rF|rf|Br|fr|R|RF|Rb|Fr|rB|FR|B|U|rb|RB)"""))|(([0-9](?:_?[)
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=53 (OP), string=')', start=(33, 2), end=(33, 3), line='a()')
* _tokenize => TokenInfo(type=53 (OP), string=')', start=(33, 2), end=(33, 3), line='a()')
* Call to _tokenize on line 712 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* Call to __new__ on line 12 of <string>
* __new__ => TokenInfo(type=0 (ENDMARKER), string='', start=(34, 0), end=(34, 0), line='')
* _tokenize => TokenInfo(type=0 (ENDMARKER), string='', start=(34, 0), end=(34, 0), line='')
* Call to _tokenize on line 724 of /Users/gaufung/anaconda/lib/python3.6/tokenize.py
* _tokenize => None
* quiet => False
* Call to start_displayhook on line 60 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/displayhook.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <jupyter_client.session.Session object at 0x103193780>
* __get__ => <jupyter_client.session.Session object at 0x103193780>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {'msg_id': '55CF182A591C443A9A4AAB0F7E5A6B39', 'username': 'username', 'session': '68D804B9BA994F5484684C2528DFF21C', 'msg_type': 'execute_request', 'version': '5.0', 'date': '2017-09-09T18:57:26.621373'}
* __get__ => {'msg_id': '55CF182A591C443A9A4AAB0F7E5A6B39', 'username': 'username', 'session': '68D804B9BA994F5484684C2528DFF21C', 'msg_type': 'execute_request', 'version': '5.0', 'date': '2017-09-09T18:57:26.621373'}
* Call to msg on line 515 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_header on line 512 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_id on line 460 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to uuid4 on line 600 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __init__ on line 106 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* __init__ => None
* uuid4 => c5cb86a1-8e85-4432-8eb7-068105219420
* Call to __str__ on line 226 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* __str__ => c5cb86a1-8e85-4432-8eb7-068105219420
* msg_id => c5cb86a1-8e85-4432-8eb7-068105219420
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => gaufung
* __get__ => gaufung
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => a64cfc19-4962-4592-9e57-b43320623708
* __get__ => a64cfc19-4962-4592-9e57-b43320623708
* Call to msg_header on line 206 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* msg_header => {'session': 'a64cfc19-4962-4592-9e57-b43320623708', 'username': 'gaufung', 'msg_type': 'execute_result', 'msg_id': 'c5cb86a1-8e85-4432-8eb7-068105219420', 'date': datetime.datetime(2017, 9, 9, 18, 57, 27, 142739), 'version': '5.0'}
* msg_header => {'session': 'a64cfc19-4962-4592-9e57-b43320623708', 'username': 'gaufung', 'msg_type': 'execute_result', 'msg_id': 'c5cb86a1-8e85-4432-8eb7-068105219420', 'date': datetime.datetime(2017, 9, 9, 18, 57, 27, 142739), 'version': '5.0'}
* Call to extract_header on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* extract_header => {'msg_id': '55CF182A591C443A9A4AAB0F7E5A6B39', 'username': 'username', 'session': '68D804B9BA994F5484684C2528DFF21C', 'msg_type': 'execute_request', 'version': '5.0', 'date': '2017-09-09T18:57:26.621373'}
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* msg => {'header': {'session': 'a64cfc19-4962-4592-9e57-b43320623708', 'username': 'gaufung', 'msg_type': 'execute_result', 'msg_id': 'c5cb86a1-8e85-4432-8eb7-068105219420', 'date': datetime.datetime(2017, 9, 9, 18, 57, 27, 142739), 'version': '5.0'}, 'msg_id': 'c5cb86a1-8e85-4432-8eb7-068105219420', 'msg_type': 'execute_result', 'parent_header': {'msg_id': '55CF182A591C443A9A4AAB0F7E5A6B39', 'username': 'username', 'session': '68D804B9BA994F5484684C2528DFF21C', 'msg_type': 'execute_request', 'version': '5.0', 'date': '2017-09-09T18:57:26.621373'}, 'content': {'data': {}, 'metadata': {}}, 'metadata': {}}
* start_displayhook => None
* Call to write_output_prompt on line 66 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/displayhook.py
* Call to prompt_count on line 63 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/displayhook.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 3
* __get__ => 3
* prompt_count => 3
* write_output_prompt => None
* Call to compute_format_data on line 120 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/displayhook.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to format on line 86 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method DisplayFormatter._default_formatter of <IPython.core.formatters.DisplayFormatter object at 0x103215e48>>
* Call to _default_formatter on line 58 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __new__ on line 948 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 980 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 959 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to instance_init on line 921 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to observe on line 1235 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to parse_notifier_name on line 188 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* parse_notifier_name => ('config',)
* Call to _add_notifiers on line 1176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _add_notifiers => None
* observe => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033ad390>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b6b6d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033ad978>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032ecac8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => True
* _validate => True
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389630>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033c99e8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => text/plain
* _validate => text/plain
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033a69e8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b72d68>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x1023952b0>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032d0550>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2084 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 2082 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <lambda> => _ipython_display_
* Call to isidentifier on line 98 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* isidentifier => True
* validate => _ipython_display_
* _validate => _ipython_display_
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10344ec18>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1034375f8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* setup_instance => None
* setup_instance => None
* __new__ => <IPython.core.formatters.IPythonDisplayFormatter object at 0x1032d0e80>
* Call to __init__ on line 38 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* __get__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* _validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => parent
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* Call to __init__ on line 986 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10342d860>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* __init__ => None
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* _validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => config
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.IPythonDisplayFormatter object at 0x1032d0e80>>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.IPythonDisplayFormatter object at 0x1032d0e80>>
* Call to compatible_observer on line 803 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _config_changed on line 170 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to traits on line 1405 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to getmembers on line 224 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389630>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x1023952b0>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* getmembers => [('__call__', <function IPythonDisplayFormatter.__call__ at 0x102390378>), ('__class__', <class 'traitlets.traitlets.MetaHasTraits'>), ('__contains__', <function BaseFormatter.__contains__ at 0x10238aa60>), ('__delattr__', <slot wrapper '__delattr__' of 'object' objects>), ('__dict__', mappingproxy({'__module__': 'IPython.core.formatters', '__doc__': 'A Formatter for objects that know how to display themselves.\n    \n    To define the callables that compute the representation of your\n    objects, define a :meth:`_ipython_display_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this. Unlike mime-type displays, this method should not return anything,\n    instead calling any appropriate display methods itself.\n    \n    This display formatter has highest priority.\n    If it fires, no other display formatter will be called.\n    ', 'print_method': <traitlets.traitlets.ObjectName object at 0x1023952b0>, '_return_type': (<class 'NoneType'>, <class 'bool'>), '__call__': <function IPythonDisplayFormatter.__call__ at 0x102390378>, '_trait_default_generators': {}})), ('__dir__', <method '__dir__' of 'object' objects>), ('__doc__', 'A Formatter for objects that know how to display themselves.\n    \n    To define the callables that compute the representation of your\n    objects, define a :meth:`_ipython_display_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this. Unlike mime-type displays, this method should not return anything,\n    instead calling any appropriate display methods itself.\n    \n    This display formatter has highest priority.\n    If it fires, no other display formatter will be called.\n    '), ('__eq__', <slot wrapper '__eq__' of 'object' objects>), ('__format__', <method '__format__' of 'object' objects>), ('__ge__', <slot wrapper '__ge__' of 'object' objects>), ('__getattribute__', <slot wrapper '__getattribute__' of 'object' objects>), ('__getstate__', <function HasTraits.__getstate__ at 0x101b4b620>), ('__gt__', <slot wrapper '__gt__' of 'object' objects>), ('__hash__', <slot wrapper '__hash__' of 'object' objects>), ('__init__', <function Configurable.__init__ at 0x101bd9d90>), ('__init_subclass__', <built-in method __init_subclass__ of MetaHasTraits object at 0x7f8804d4a7e8>), ('__le__', <slot wrapper '__le__' of 'object' objects>), ('__lt__', <slot wrapper '__lt__' of 'object' objects>), ('__module__', 'IPython.core.formatters'), ('__ne__', <slot wrapper '__ne__' of 'object' objects>), ('__new__', <function HasDescriptors.__new__ at 0x101b4b2f0>), ('__reduce__', <method '__reduce__' of 'object' objects>), ('__reduce_ex__', <method '__reduce_ex__' of 'object' objects>), ('__repr__', <slot wrapper '__repr__' of 'object' objects>), ('__setattr__', <slot wrapper '__setattr__' of 'object' objects>), ('__setstate__', <function HasTraits.__setstate__ at 0x101b4b6a8>), ('__sizeof__', <method '__sizeof__' of 'object' objects>), ('__str__', <slot wrapper '__str__' of 'object' objects>), ('__subclasshook__', <built-in method __subclasshook__ of MetaHasTraits object at 0x7f8804d4a7e8>), ('__weakref__', <attribute '__weakref__' of 'HasDescriptors' objects>), ('_add_notifiers', <function HasTraits._add_notifiers at 0x101b4ba60>), ('_check_return', <function BaseFormatter._check_return at 0x10238aae8>), ('_config_changed', <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>), ('_find_my_config', <function Configurable._find_my_config at 0x101bd9ea0>), ('_in_deferred_types', <function BaseFormatter._in_deferred_types at 0x10238ae18>), ('_load_config', <function Configurable._load_config at 0x101bd9f28>), ('_notify_trait', <function HasTraits._notify_trait at 0x101b4b950>), ('_register_validator', <function HasTraits._register_validator at 0x101b4bd90>), ('_remove_notifiers', <function HasTraits._remove_notifiers at 0x101b4bae8>), ('_return_type', (<class 'NoneType'>, <class 'bool'>)), ('_trait_default_generators', {}), ('add_traits', <function HasTraits.add_traits at 0x101b4be18>), ('class_config_rst_doc', <bound method Configurable.class_config_rst_doc of <class 'IPython.core.formatters.IPythonDisplayFormatter'>>), ('class_config_section', <bound method Configurable.class_config_section of <class 'IPython.core.formatters.IPythonDisplayFormatter'>>), ('class_get_help', <bound method Configurable.class_get_help of <class 'IPython.core.formatters.IPythonDisplayFormatter'>>), ('class_get_trait_help', <bound method Configurable.class_get_trait_help of <class 'IPython.core.formatters.IPythonDisplayFormatter'>>), ('class_own_trait_events', <bound method HasTraits.class_own_trait_events of <class 'IPython.core.formatters.IPythonDisplayFormatter'>>), ('class_own_traits', <bound method HasTraits.class_own_traits of <class 'IPython.core.formatters.IPythonDisplayFormatter'>>), ('class_print_help', <bound method Configurable.class_print_help of <class 'IPython.core.formatters.IPythonDisplayFormatter'>>), ('class_trait_names', <bound method HasTraits.class_trait_names of <class 'IPython.core.formatters.IPythonDisplayFormatter'>>), ('class_traits', <bound method HasTraits.class_traits of <class 'IPython.core.formatters.IPythonDisplayFormatter'>>), ('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('cross_validation_lock', <property object at 0x101b4a458>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('for_type', <function BaseFormatter.for_type at 0x10238ac80>), ('for_type_by_name', <function BaseFormatter.for_type_by_name at 0x10238ad08>), ('format_type', <traitlets.traitlets.Unicode object at 0x102389630>), ('has_trait', <function HasTraits.has_trait at 0x101b51158>), ('hold_trait_notifications', <function HasTraits.hold_trait_notifications at 0x101b4b8c8>), ('lookup', <function BaseFormatter.lookup at 0x10238ab70>), ('lookup_by_type', <function BaseFormatter.lookup_by_type at 0x10238abf8>), ('notify_change', <function HasTraits.notify_change at 0x101b4b9d8>), ('observe', <function HasTraits.observe at 0x101b4bbf8>), ('on_trait_change', <function HasTraits.on_trait_change at 0x101b4bb70>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('pop', <function BaseFormatter.pop at 0x10238ad90>), ('print_method', <traitlets.traitlets.ObjectName object at 0x1023952b0>), ('section_names', <bound method Configurable.section_names of <class 'IPython.core.formatters.IPythonDisplayFormatter'>>), ('set_trait', <function HasTraits.set_trait at 0x101b4bea0>), ('setup_instance', <function HasTraits.setup_instance at 0x101b4b488>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('trait_events', <bound method HasTraits.trait_events of <class 'IPython.core.formatters.IPythonDisplayFormatter'>>), ('trait_metadata', <function HasTraits.trait_metadata at 0x101b512f0>), ('trait_names', <function HasTraits.trait_names at 0x101b511e0>), ('traits', <function HasTraits.traits at 0x101b51268>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>), ('unobserve', <function HasTraits.unobserve at 0x101b4bc80>), ('unobserve_all', <function HasTraits.unobserve_all at 0x101b4bd08>), ('update_config', <function Configurable.update_config at 0x101bde158>)]
* Call to <listcomp> on line 1419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <listcomp> => [('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('format_type', <traitlets.traitlets.Unicode object at 0x102389630>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('print_method', <traitlets.traitlets.ObjectName object at 0x1023952b0>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>)]
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* traits => {'deferred_printers': <traitlets.traitlets.Dict object at 0x1023897b8>, 'enabled': <traitlets.traitlets.Bool object at 0x102389668>, 'singleton_printers': <traitlets.traitlets.Dict object at 0x1023896d8>, 'type_printers': <traitlets.traitlets.Dict object at 0x102389748>}
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'IPythonDisplayFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'IPythonDisplayFormatter']
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _load_config on line 131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => None
* __get__ => None
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* section_names => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => True
* _has_section => True
* Call to __getitem__ on line 252 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __getitem__ => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to merge on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* merge => None
* _find_my_config => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'IPythonDisplayFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'IPythonDisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'IPythonDisplayFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'IPythonDisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033aaa20>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* _load_config => None
* _config_changed => None
* compatible_observer => None
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* __init__ => None
* _default_formatter => <IPython.core.formatters.IPythonDisplayFormatter object at 0x1032d0e80>
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => True
* __instancecheck__ => True
* validate => <IPython.core.formatters.IPythonDisplayFormatter object at 0x1032d0e80>
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => <IPython.core.formatters.IPythonDisplayFormatter object at 0x1032d0e80>
* _validate => <IPython.core.formatters.IPythonDisplayFormatter object at 0x1032d0e80>
* get => <IPython.core.formatters.IPythonDisplayFormatter object at 0x1032d0e80>
* __get__ => <IPython.core.formatters.IPythonDisplayFormatter object at 0x1032d0e80>
* Call to __call__ on line 1 of <decorator-gen-11>
* Call to catch_format_error on line 186 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __call__ on line 867 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => True
* __get__ => True
* Call to lookup on line 340 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _get_type on line 240 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _get_type => <class 'str'>
* Call to lookup_by_type on line 363 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to _get_mro on line 296 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* _get_mro => (<class 'str'>, <class 'object'>)
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* _in_deferred_types => False
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* _in_deferred_types => False
* lookup_by_type => None
* lookup => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => _ipython_display_
* __get__ => _ipython_display_
* Call to get_real_method on line 51 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/dir2.py
* Call to isclass on line 72 of /Users/gaufung/anaconda/lib/python3.6/inspect.py
* isclass => False
* get_real_method => None
* __call__ => None
* Call to _check_return on line 325 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _check_return => None
* catch_format_error => None
* __call__ => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method DisplayFormatter._formatters_default of <IPython.core.formatters.DisplayFormatter object at 0x103215e48>>
* Call to _formatters_default on line 65 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __new__ on line 948 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 980 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 959 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to instance_init on line 921 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to observe on line 1235 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to parse_notifier_name on line 188 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* parse_notifier_name => ('config',)
* Call to _add_notifiers on line 1176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _add_notifiers => None
* observe => None
* instance_init => None
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.DefaultHandler object at 0x102389c88>
* Call to instance_init on line 396 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* instance_init => None
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x102389ba8>
* Call to instance_init on line 921 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to observe on line 1235 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to parse_notifier_name on line 188 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* parse_notifier_name => ('float_precision',)
* Call to _add_notifiers on line 1176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _add_notifiers => None
* observe => None
* instance_init => None
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.DefaultHandler object at 0x102389c18>
* Call to instance_init on line 396 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* instance_init => None
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.DefaultHandler object at 0x102389c50>
* Call to instance_init on line 396 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10344edd8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b6b6d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10343f160>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method PlainTextFormatter._deferred_printers_default of <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x1023899b0>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10343f6d8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => True
* _validate => True
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389b00>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1034375c0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => %r
* _validate => %r
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.CUnicode object at 0x102389b38>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1034375c0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2058 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => 
* _validate => 
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389828>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10338a320>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => text/plain
* _validate => text/plain
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Int object at 0x102389860>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10338a128>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1866 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate_bounds on line 1830 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _validate_bounds => 1000
* validate => 1000
* _validate => 1000
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Int object at 0x102389a90>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033aa710>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1866 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate_bounds on line 1830 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _validate_bounds => 79
* validate => 79
* _validate => 79
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389ac8>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033b56a0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => 

* _validate => 

* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1034526d8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b72d68>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389a20>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033eaeb8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => True
* _validate => True
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x1023899e8>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033eabe0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2084 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 2082 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <lambda> => _repr_pretty_
* Call to isidentifier on line 98 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* isidentifier => True
* validate => _repr_pretty_
* _validate => _repr_pretty_
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033a6860>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method PlainTextFormatter._singleton_printers_default of <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033a65f8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method PlainTextFormatter._type_printers_default of <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389a58>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032ec8d0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => False
* _validate => False
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* setup_instance => None
* setup_instance => None
* __new__ => <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>
* Call to __init__ on line 38 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* __get__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* _validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => parent
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* Call to __init__ on line 986 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032ecb00>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* __init__ => None
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* _validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => config
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>>
* Call to compatible_observer on line 803 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _config_changed on line 170 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to traits on line 1405 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to getmembers on line 224 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.DefaultHandler object at 0x102389c88>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x102389ba8>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.DefaultHandler object at 0x102389c18>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.DefaultHandler object at 0x102389c50>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x1023899b0>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389b00>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.CUnicode object at 0x102389b38>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389828>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Int object at 0x102389860>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Int object at 0x102389a90>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389ac8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389a20>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x1023899e8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389a58>
* getmembers => [('__call__', <function PlainTextFormatter.__call__ at 0x1023901e0>), ('__class__', <class 'traitlets.traitlets.MetaHasTraits'>), ('__contains__', <function BaseFormatter.__contains__ at 0x10238aa60>), ('__delattr__', <slot wrapper '__delattr__' of 'object' objects>), ('__dict__', mappingproxy({'__module__': 'IPython.core.formatters', '__doc__': "The default pretty-printer.\n\n    This uses :mod:`IPython.lib.pretty` to compute the format data of\n    the object. If the object cannot be pretty printed, :func:`repr` is used.\n    See the documentation of :mod:`IPython.lib.pretty` for details on\n    how to write pretty printers.  Here is a simple example::\n\n        def dtype_pprinter(obj, p, cycle):\n            if cycle:\n                return p.text('dtype(...)')\n            if hasattr(obj, 'fields'):\n                if obj.fields is None:\n                    p.text(repr(obj))\n                else:\n                    p.begin_group(7, 'dtype([')\n                    for i, field in enumerate(obj.descr):\n                        if i > 0:\n                            p.text(',')\n                            p.breakable()\n                        p.pretty(field)\n                    p.end_group(7, '])')\n    ", 'format_type': <traitlets.traitlets.Unicode object at 0x102389828>, 'enabled': <traitlets.traitlets.Bool object at 0x1023899b0>, 'max_seq_length': <traitlets.traitlets.Int object at 0x102389860>, 'print_method': <traitlets.traitlets.ObjectName object at 0x1023899e8>, 'pprint': <traitlets.traitlets.Bool object at 0x102389a20>, 'verbose': <traitlets.traitlets.Bool object at 0x102389a58>, 'max_width': <traitlets.traitlets.Int object at 0x102389a90>, 'newline': <traitlets.traitlets.Unicode object at 0x102389ac8>, 'float_format': <traitlets.traitlets.Unicode object at 0x102389b00>, 'float_precision': <traitlets.traitlets.CUnicode object at 0x102389b38>, '_float_precision_changed': <traitlets.traitlets.ObserveHandler object at 0x102389ba8>, '_singleton_printers_default': <traitlets.traitlets.DefaultHandler object at 0x102389c18>, '_type_printers_default': <traitlets.traitlets.DefaultHandler object at 0x102389c50>, '_deferred_printers_default': <traitlets.traitlets.DefaultHandler object at 0x102389c88>, '__call__': <function PlainTextFormatter.__call__ at 0x1023901e0>, '_trait_default_generators': {'singleton_printers': <traitlets.traitlets.DefaultHandler object at 0x102389c18>, 'type_printers': <traitlets.traitlets.DefaultHandler object at 0x102389c50>, 'deferred_printers': <traitlets.traitlets.DefaultHandler object at 0x102389c88>}})), ('__dir__', <method '__dir__' of 'object' objects>), ('__doc__', "The default pretty-printer.\n\n    This uses :mod:`IPython.lib.pretty` to compute the format data of\n    the object. If the object cannot be pretty printed, :func:`repr` is used.\n    See the documentation of :mod:`IPython.lib.pretty` for details on\n    how to write pretty printers.  Here is a simple example::\n\n        def dtype_pprinter(obj, p, cycle):\n            if cycle:\n                return p.text('dtype(...)')\n            if hasattr(obj, 'fields'):\n                if obj.fields is None:\n                    p.text(repr(obj))\n                else:\n                    p.begin_group(7, 'dtype([')\n                    for i, field in enumerate(obj.descr):\n                        if i > 0:\n                            p.text(',')\n                            p.breakable()\n                        p.pretty(field)\n                    p.end_group(7, '])')\n    "), ('__eq__', <slot wrapper '__eq__' of 'object' objects>), ('__format__', <method '__format__' of 'object' objects>), ('__ge__', <slot wrapper '__ge__' of 'object' objects>), ('__getattribute__', <slot wrapper '__getattribute__' of 'object' objects>), ('__getstate__', <function HasTraits.__getstate__ at 0x101b4b620>), ('__gt__', <slot wrapper '__gt__' of 'object' objects>), ('__hash__', <slot wrapper '__hash__' of 'object' objects>), ('__init__', <function Configurable.__init__ at 0x101bd9d90>), ('__init_subclass__', <built-in method __init_subclass__ of MetaHasTraits object at 0x7f8804c85438>), ('__le__', <slot wrapper '__le__' of 'object' objects>), ('__lt__', <slot wrapper '__lt__' of 'object' objects>), ('__module__', 'IPython.core.formatters'), ('__ne__', <slot wrapper '__ne__' of 'object' objects>), ('__new__', <function HasDescriptors.__new__ at 0x101b4b2f0>), ('__reduce__', <method '__reduce__' of 'object' objects>), ('__reduce_ex__', <method '__reduce_ex__' of 'object' objects>), ('__repr__', <slot wrapper '__repr__' of 'object' objects>), ('__setattr__', <slot wrapper '__setattr__' of 'object' objects>), ('__setstate__', <function HasTraits.__setstate__ at 0x101b4b6a8>), ('__sizeof__', <method '__sizeof__' of 'object' objects>), ('__str__', <slot wrapper '__str__' of 'object' objects>), ('__subclasshook__', <built-in method __subclasshook__ of MetaHasTraits object at 0x7f8804c85438>), ('__weakref__', <attribute '__weakref__' of 'HasDescriptors' objects>), ('_add_notifiers', <function HasTraits._add_notifiers at 0x101b4ba60>), ('_check_return', <function BaseFormatter._check_return at 0x10238aae8>), ('_config_changed', <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>), ('_deferred_printers_default', <traitlets.traitlets.DefaultHandler object at 0x102389c88>), ('_find_my_config', <function Configurable._find_my_config at 0x101bd9ea0>), ('_float_precision_changed', <traitlets.traitlets.ObserveHandler object at 0x102389ba8>), ('_in_deferred_types', <function BaseFormatter._in_deferred_types at 0x10238ae18>), ('_load_config', <function Configurable._load_config at 0x101bd9f28>), ('_notify_trait', <function HasTraits._notify_trait at 0x101b4b950>), ('_register_validator', <function HasTraits._register_validator at 0x101b4bd90>), ('_remove_notifiers', <function HasTraits._remove_notifiers at 0x101b4bae8>), ('_return_type', (<class 'str'>,)), ('_singleton_printers_default', <traitlets.traitlets.DefaultHandler object at 0x102389c18>), ('_trait_default_generators', {'singleton_printers': <traitlets.traitlets.DefaultHandler object at 0x102389c18>, 'type_printers': <traitlets.traitlets.DefaultHandler object at 0x102389c50>, 'deferred_printers': <traitlets.traitlets.DefaultHandler object at 0x102389c88>}), ('_type_printers_default', <traitlets.traitlets.DefaultHandler object at 0x102389c50>), ('add_traits', <function HasTraits.add_traits at 0x101b4be18>), ('class_config_rst_doc', <bound method Configurable.class_config_rst_doc of <class 'IPython.core.formatters.PlainTextFormatter'>>), ('class_config_section', <bound method Configurable.class_config_section of <class 'IPython.core.formatters.PlainTextFormatter'>>), ('class_get_help', <bound method Configurable.class_get_help of <class 'IPython.core.formatters.PlainTextFormatter'>>), ('class_get_trait_help', <bound method Configurable.class_get_trait_help of <class 'IPython.core.formatters.PlainTextFormatter'>>), ('class_own_trait_events', <bound method HasTraits.class_own_trait_events of <class 'IPython.core.formatters.PlainTextFormatter'>>), ('class_own_traits', <bound method HasTraits.class_own_traits of <class 'IPython.core.formatters.PlainTextFormatter'>>), ('class_print_help', <bound method Configurable.class_print_help of <class 'IPython.core.formatters.PlainTextFormatter'>>), ('class_trait_names', <bound method HasTraits.class_trait_names of <class 'IPython.core.formatters.PlainTextFormatter'>>), ('class_traits', <bound method HasTraits.class_traits of <class 'IPython.core.formatters.PlainTextFormatter'>>), ('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('cross_validation_lock', <property object at 0x101b4a458>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x1023899b0>), ('float_format', <traitlets.traitlets.Unicode object at 0x102389b00>), ('float_precision', <traitlets.traitlets.CUnicode object at 0x102389b38>), ('for_type', <function BaseFormatter.for_type at 0x10238ac80>), ('for_type_by_name', <function BaseFormatter.for_type_by_name at 0x10238ad08>), ('format_type', <traitlets.traitlets.Unicode object at 0x102389828>), ('has_trait', <function HasTraits.has_trait at 0x101b51158>), ('hold_trait_notifications', <function HasTraits.hold_trait_notifications at 0x101b4b8c8>), ('lookup', <function BaseFormatter.lookup at 0x10238ab70>), ('lookup_by_type', <function BaseFormatter.lookup_by_type at 0x10238abf8>), ('max_seq_length', <traitlets.traitlets.Int object at 0x102389860>), ('max_width', <traitlets.traitlets.Int object at 0x102389a90>), ('newline', <traitlets.traitlets.Unicode object at 0x102389ac8>), ('notify_change', <function HasTraits.notify_change at 0x101b4b9d8>), ('observe', <function HasTraits.observe at 0x101b4bbf8>), ('on_trait_change', <function HasTraits.on_trait_change at 0x101b4bb70>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('pop', <function BaseFormatter.pop at 0x10238ad90>), ('pprint', <traitlets.traitlets.Bool object at 0x102389a20>), ('print_method', <traitlets.traitlets.ObjectName object at 0x1023899e8>), ('section_names', <bound method Configurable.section_names of <class 'IPython.core.formatters.PlainTextFormatter'>>), ('set_trait', <function HasTraits.set_trait at 0x101b4bea0>), ('setup_instance', <function HasTraits.setup_instance at 0x101b4b488>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('trait_events', <bound method HasTraits.trait_events of <class 'IPython.core.formatters.PlainTextFormatter'>>), ('trait_metadata', <function HasTraits.trait_metadata at 0x101b512f0>), ('trait_names', <function HasTraits.trait_names at 0x101b511e0>), ('traits', <function HasTraits.traits at 0x101b51268>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>), ('unobserve', <function HasTraits.unobserve at 0x101b4bc80>), ('unobserve_all', <function HasTraits.unobserve_all at 0x101b4bd08>), ('update_config', <function Configurable.update_config at 0x101bde158>), ('verbose', <traitlets.traitlets.Bool object at 0x102389a58>)]
* Call to <listcomp> on line 1419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <listcomp> => [('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x1023899b0>), ('float_format', <traitlets.traitlets.Unicode object at 0x102389b00>), ('float_precision', <traitlets.traitlets.CUnicode object at 0x102389b38>), ('format_type', <traitlets.traitlets.Unicode object at 0x102389828>), ('max_seq_length', <traitlets.traitlets.Int object at 0x102389860>), ('max_width', <traitlets.traitlets.Int object at 0x102389a90>), ('newline', <traitlets.traitlets.Unicode object at 0x102389ac8>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('pprint', <traitlets.traitlets.Bool object at 0x102389a20>), ('print_method', <traitlets.traitlets.ObjectName object at 0x1023899e8>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>), ('verbose', <traitlets.traitlets.Bool object at 0x102389a58>)]
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* traits => {'deferred_printers': <traitlets.traitlets.Dict object at 0x1023897b8>, 'float_precision': <traitlets.traitlets.CUnicode object at 0x102389b38>, 'max_seq_length': <traitlets.traitlets.Int object at 0x102389860>, 'max_width': <traitlets.traitlets.Int object at 0x102389a90>, 'newline': <traitlets.traitlets.Unicode object at 0x102389ac8>, 'pprint': <traitlets.traitlets.Bool object at 0x102389a20>, 'singleton_printers': <traitlets.traitlets.Dict object at 0x1023896d8>, 'type_printers': <traitlets.traitlets.Dict object at 0x102389748>, 'verbose': <traitlets.traitlets.Bool object at 0x102389a58>}
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'PlainTextFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'PlainTextFormatter']
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _load_config on line 131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => None
* __get__ => None
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* section_names => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => True
* _has_section => True
* Call to __getitem__ on line 252 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __getitem__ => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to merge on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* merge => None
* _find_my_config => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'PlainTextFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'PlainTextFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'PlainTextFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'PlainTextFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1034379b0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* _load_config => None
* _config_changed => None
* compatible_observer => None
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* __init__ => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => text/plain
* __get__ => text/plain
* Call to __new__ on line 948 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 980 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 959 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to instance_init on line 921 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to observe on line 1235 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to parse_notifier_name on line 188 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* parse_notifier_name => ('config',)
* Call to _add_notifiers on line 1176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _add_notifiers => None
* observe => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1034377f0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b6b6d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x103487ac8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032d0160>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => True
* _validate => True
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389cc0>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033c9518>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => text/html
* _validate => text/html
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033c9a58>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b72d68>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x102389da0>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033c9d68>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2084 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 2082 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <lambda> => _repr_html_
* Call to isidentifier on line 98 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* isidentifier => True
* validate => _repr_html_
* _validate => _repr_html_
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032e6908>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033b7e10>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* setup_instance => None
* setup_instance => None
* __new__ => <IPython.core.formatters.HTMLFormatter object at 0x103487278>
* Call to __init__ on line 38 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* __get__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* _validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => parent
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* Call to __init__ on line 986 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032ffa20>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* __init__ => None
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* _validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => config
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.HTMLFormatter object at 0x103487278>>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.HTMLFormatter object at 0x103487278>>
* Call to compatible_observer on line 803 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _config_changed on line 170 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to traits on line 1405 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to getmembers on line 224 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389cc0>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x102389da0>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* getmembers => [('__call__', <function BaseFormatter.__call__ at 0x10238a9d8>), ('__class__', <class 'traitlets.traitlets.MetaHasTraits'>), ('__contains__', <function BaseFormatter.__contains__ at 0x10238aa60>), ('__delattr__', <slot wrapper '__delattr__' of 'object' objects>), ('__dict__', mappingproxy({'__module__': 'IPython.core.formatters', '__doc__': 'An HTML formatter.\n\n    To define the callables that compute the HTML representation of your\n    objects, define a :meth:`_repr_html_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this.\n\n    The return value of this formatter should be a valid HTML snippet that\n    could be injected into an existing DOM. It should *not* include the\n    ```<html>`` or ```<body>`` tags.\n    ', 'format_type': <traitlets.traitlets.Unicode object at 0x102389cc0>, 'print_method': <traitlets.traitlets.ObjectName object at 0x102389da0>, '_trait_default_generators': {}})), ('__dir__', <method '__dir__' of 'object' objects>), ('__doc__', 'An HTML formatter.\n\n    To define the callables that compute the HTML representation of your\n    objects, define a :meth:`_repr_html_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this.\n\n    The return value of this formatter should be a valid HTML snippet that\n    could be injected into an existing DOM. It should *not* include the\n    ```<html>`` or ```<body>`` tags.\n    '), ('__eq__', <slot wrapper '__eq__' of 'object' objects>), ('__format__', <method '__format__' of 'object' objects>), ('__ge__', <slot wrapper '__ge__' of 'object' objects>), ('__getattribute__', <slot wrapper '__getattribute__' of 'object' objects>), ('__getstate__', <function HasTraits.__getstate__ at 0x101b4b620>), ('__gt__', <slot wrapper '__gt__' of 'object' objects>), ('__hash__', <slot wrapper '__hash__' of 'object' objects>), ('__init__', <function Configurable.__init__ at 0x101bd9d90>), ('__init_subclass__', <built-in method __init_subclass__ of MetaHasTraits object at 0x7f8804c85dd8>), ('__le__', <slot wrapper '__le__' of 'object' objects>), ('__lt__', <slot wrapper '__lt__' of 'object' objects>), ('__module__', 'IPython.core.formatters'), ('__ne__', <slot wrapper '__ne__' of 'object' objects>), ('__new__', <function HasDescriptors.__new__ at 0x101b4b2f0>), ('__reduce__', <method '__reduce__' of 'object' objects>), ('__reduce_ex__', <method '__reduce_ex__' of 'object' objects>), ('__repr__', <slot wrapper '__repr__' of 'object' objects>), ('__setattr__', <slot wrapper '__setattr__' of 'object' objects>), ('__setstate__', <function HasTraits.__setstate__ at 0x101b4b6a8>), ('__sizeof__', <method '__sizeof__' of 'object' objects>), ('__str__', <slot wrapper '__str__' of 'object' objects>), ('__subclasshook__', <built-in method __subclasshook__ of MetaHasTraits object at 0x7f8804c85dd8>), ('__weakref__', <attribute '__weakref__' of 'HasDescriptors' objects>), ('_add_notifiers', <function HasTraits._add_notifiers at 0x101b4ba60>), ('_check_return', <function BaseFormatter._check_return at 0x10238aae8>), ('_config_changed', <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>), ('_find_my_config', <function Configurable._find_my_config at 0x101bd9ea0>), ('_in_deferred_types', <function BaseFormatter._in_deferred_types at 0x10238ae18>), ('_load_config', <function Configurable._load_config at 0x101bd9f28>), ('_notify_trait', <function HasTraits._notify_trait at 0x101b4b950>), ('_register_validator', <function HasTraits._register_validator at 0x101b4bd90>), ('_remove_notifiers', <function HasTraits._remove_notifiers at 0x101b4bae8>), ('_return_type', (<class 'str'>,)), ('_trait_default_generators', {}), ('add_traits', <function HasTraits.add_traits at 0x101b4be18>), ('class_config_rst_doc', <bound method Configurable.class_config_rst_doc of <class 'IPython.core.formatters.HTMLFormatter'>>), ('class_config_section', <bound method Configurable.class_config_section of <class 'IPython.core.formatters.HTMLFormatter'>>), ('class_get_help', <bound method Configurable.class_get_help of <class 'IPython.core.formatters.HTMLFormatter'>>), ('class_get_trait_help', <bound method Configurable.class_get_trait_help of <class 'IPython.core.formatters.HTMLFormatter'>>), ('class_own_trait_events', <bound method HasTraits.class_own_trait_events of <class 'IPython.core.formatters.HTMLFormatter'>>), ('class_own_traits', <bound method HasTraits.class_own_traits of <class 'IPython.core.formatters.HTMLFormatter'>>), ('class_print_help', <bound method Configurable.class_print_help of <class 'IPython.core.formatters.HTMLFormatter'>>), ('class_trait_names', <bound method HasTraits.class_trait_names of <class 'IPython.core.formatters.HTMLFormatter'>>), ('class_traits', <bound method HasTraits.class_traits of <class 'IPython.core.formatters.HTMLFormatter'>>), ('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('cross_validation_lock', <property object at 0x101b4a458>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('for_type', <function BaseFormatter.for_type at 0x10238ac80>), ('for_type_by_name', <function BaseFormatter.for_type_by_name at 0x10238ad08>), ('format_type', <traitlets.traitlets.Unicode object at 0x102389cc0>), ('has_trait', <function HasTraits.has_trait at 0x101b51158>), ('hold_trait_notifications', <function HasTraits.hold_trait_notifications at 0x101b4b8c8>), ('lookup', <function BaseFormatter.lookup at 0x10238ab70>), ('lookup_by_type', <function BaseFormatter.lookup_by_type at 0x10238abf8>), ('notify_change', <function HasTraits.notify_change at 0x101b4b9d8>), ('observe', <function HasTraits.observe at 0x101b4bbf8>), ('on_trait_change', <function HasTraits.on_trait_change at 0x101b4bb70>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('pop', <function BaseFormatter.pop at 0x10238ad90>), ('print_method', <traitlets.traitlets.ObjectName object at 0x102389da0>), ('section_names', <bound method Configurable.section_names of <class 'IPython.core.formatters.HTMLFormatter'>>), ('set_trait', <function HasTraits.set_trait at 0x101b4bea0>), ('setup_instance', <function HasTraits.setup_instance at 0x101b4b488>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('trait_events', <bound method HasTraits.trait_events of <class 'IPython.core.formatters.HTMLFormatter'>>), ('trait_metadata', <function HasTraits.trait_metadata at 0x101b512f0>), ('trait_names', <function HasTraits.trait_names at 0x101b511e0>), ('traits', <function HasTraits.traits at 0x101b51268>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>), ('unobserve', <function HasTraits.unobserve at 0x101b4bc80>), ('unobserve_all', <function HasTraits.unobserve_all at 0x101b4bd08>), ('update_config', <function Configurable.update_config at 0x101bde158>)]
* Call to <listcomp> on line 1419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <listcomp> => [('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('format_type', <traitlets.traitlets.Unicode object at 0x102389cc0>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('print_method', <traitlets.traitlets.ObjectName object at 0x102389da0>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>)]
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* traits => {'deferred_printers': <traitlets.traitlets.Dict object at 0x1023897b8>, 'enabled': <traitlets.traitlets.Bool object at 0x102389668>, 'singleton_printers': <traitlets.traitlets.Dict object at 0x1023896d8>, 'type_printers': <traitlets.traitlets.Dict object at 0x102389748>}
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'HTMLFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'HTMLFormatter']
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _load_config on line 131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => None
* __get__ => None
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* section_names => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => True
* _has_section => True
* Call to __getitem__ on line 252 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __getitem__ => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to merge on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* merge => None
* _find_my_config => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'HTMLFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'HTMLFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'HTMLFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'HTMLFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033c9b38>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* _load_config => None
* _config_changed => None
* compatible_observer => None
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* __init__ => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => text/html
* __get__ => text/html
* Call to __new__ on line 948 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 980 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 959 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to instance_init on line 921 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to observe on line 1235 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to parse_notifier_name on line 188 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* parse_notifier_name => ('config',)
* Call to _add_notifiers on line 1176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _add_notifiers => None
* observe => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032ecc88>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b6b6d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033b7c88>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10343fb38>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => True
* _validate => True
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389cf8>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10343f550>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => text/markdown
* _validate => text/markdown
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10343f198>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b72d68>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x102389dd8>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10338afd0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2084 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 2082 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <lambda> => _repr_markdown_
* Call to isidentifier on line 98 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* isidentifier => True
* validate => _repr_markdown_
* _validate => _repr_markdown_
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033ea6a0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10338a668>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* setup_instance => None
* setup_instance => None
* __new__ => <IPython.core.formatters.MarkdownFormatter object at 0x1032e65c0>
* Call to __init__ on line 38 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* __get__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* _validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => parent
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* Call to __init__ on line 986 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10344e048>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* __init__ => None
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* _validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => config
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.MarkdownFormatter object at 0x1032e65c0>>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.MarkdownFormatter object at 0x1032e65c0>>
* Call to compatible_observer on line 803 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _config_changed on line 170 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to traits on line 1405 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to getmembers on line 224 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389cf8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x102389dd8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* getmembers => [('__call__', <function BaseFormatter.__call__ at 0x10238a9d8>), ('__class__', <class 'traitlets.traitlets.MetaHasTraits'>), ('__contains__', <function BaseFormatter.__contains__ at 0x10238aa60>), ('__delattr__', <slot wrapper '__delattr__' of 'object' objects>), ('__dict__', mappingproxy({'__module__': 'IPython.core.formatters', '__doc__': 'A Markdown formatter.\n\n    To define the callables that compute the Markdown representation of your\n    objects, define a :meth:`_repr_markdown_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this.\n\n    The return value of this formatter should be a valid Markdown.\n    ', 'format_type': <traitlets.traitlets.Unicode object at 0x102389cf8>, 'print_method': <traitlets.traitlets.ObjectName object at 0x102389dd8>, '_trait_default_generators': {}})), ('__dir__', <method '__dir__' of 'object' objects>), ('__doc__', 'A Markdown formatter.\n\n    To define the callables that compute the Markdown representation of your\n    objects, define a :meth:`_repr_markdown_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this.\n\n    The return value of this formatter should be a valid Markdown.\n    '), ('__eq__', <slot wrapper '__eq__' of 'object' objects>), ('__format__', <method '__format__' of 'object' objects>), ('__ge__', <slot wrapper '__ge__' of 'object' objects>), ('__getattribute__', <slot wrapper '__getattribute__' of 'object' objects>), ('__getstate__', <function HasTraits.__getstate__ at 0x101b4b620>), ('__gt__', <slot wrapper '__gt__' of 'object' objects>), ('__hash__', <slot wrapper '__hash__' of 'object' objects>), ('__init__', <function Configurable.__init__ at 0x101bd9d90>), ('__init_subclass__', <built-in method __init_subclass__ of MetaHasTraits object at 0x7f8804f9a868>), ('__le__', <slot wrapper '__le__' of 'object' objects>), ('__lt__', <slot wrapper '__lt__' of 'object' objects>), ('__module__', 'IPython.core.formatters'), ('__ne__', <slot wrapper '__ne__' of 'object' objects>), ('__new__', <function HasDescriptors.__new__ at 0x101b4b2f0>), ('__reduce__', <method '__reduce__' of 'object' objects>), ('__reduce_ex__', <method '__reduce_ex__' of 'object' objects>), ('__repr__', <slot wrapper '__repr__' of 'object' objects>), ('__setattr__', <slot wrapper '__setattr__' of 'object' objects>), ('__setstate__', <function HasTraits.__setstate__ at 0x101b4b6a8>), ('__sizeof__', <method '__sizeof__' of 'object' objects>), ('__str__', <slot wrapper '__str__' of 'object' objects>), ('__subclasshook__', <built-in method __subclasshook__ of MetaHasTraits object at 0x7f8804f9a868>), ('__weakref__', <attribute '__weakref__' of 'HasDescriptors' objects>), ('_add_notifiers', <function HasTraits._add_notifiers at 0x101b4ba60>), ('_check_return', <function BaseFormatter._check_return at 0x10238aae8>), ('_config_changed', <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>), ('_find_my_config', <function Configurable._find_my_config at 0x101bd9ea0>), ('_in_deferred_types', <function BaseFormatter._in_deferred_types at 0x10238ae18>), ('_load_config', <function Configurable._load_config at 0x101bd9f28>), ('_notify_trait', <function HasTraits._notify_trait at 0x101b4b950>), ('_register_validator', <function HasTraits._register_validator at 0x101b4bd90>), ('_remove_notifiers', <function HasTraits._remove_notifiers at 0x101b4bae8>), ('_return_type', (<class 'str'>,)), ('_trait_default_generators', {}), ('add_traits', <function HasTraits.add_traits at 0x101b4be18>), ('class_config_rst_doc', <bound method Configurable.class_config_rst_doc of <class 'IPython.core.formatters.MarkdownFormatter'>>), ('class_config_section', <bound method Configurable.class_config_section of <class 'IPython.core.formatters.MarkdownFormatter'>>), ('class_get_help', <bound method Configurable.class_get_help of <class 'IPython.core.formatters.MarkdownFormatter'>>), ('class_get_trait_help', <bound method Configurable.class_get_trait_help of <class 'IPython.core.formatters.MarkdownFormatter'>>), ('class_own_trait_events', <bound method HasTraits.class_own_trait_events of <class 'IPython.core.formatters.MarkdownFormatter'>>), ('class_own_traits', <bound method HasTraits.class_own_traits of <class 'IPython.core.formatters.MarkdownFormatter'>>), ('class_print_help', <bound method Configurable.class_print_help of <class 'IPython.core.formatters.MarkdownFormatter'>>), ('class_trait_names', <bound method HasTraits.class_trait_names of <class 'IPython.core.formatters.MarkdownFormatter'>>), ('class_traits', <bound method HasTraits.class_traits of <class 'IPython.core.formatters.MarkdownFormatter'>>), ('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('cross_validation_lock', <property object at 0x101b4a458>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('for_type', <function BaseFormatter.for_type at 0x10238ac80>), ('for_type_by_name', <function BaseFormatter.for_type_by_name at 0x10238ad08>), ('format_type', <traitlets.traitlets.Unicode object at 0x102389cf8>), ('has_trait', <function HasTraits.has_trait at 0x101b51158>), ('hold_trait_notifications', <function HasTraits.hold_trait_notifications at 0x101b4b8c8>), ('lookup', <function BaseFormatter.lookup at 0x10238ab70>), ('lookup_by_type', <function BaseFormatter.lookup_by_type at 0x10238abf8>), ('notify_change', <function HasTraits.notify_change at 0x101b4b9d8>), ('observe', <function HasTraits.observe at 0x101b4bbf8>), ('on_trait_change', <function HasTraits.on_trait_change at 0x101b4bb70>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('pop', <function BaseFormatter.pop at 0x10238ad90>), ('print_method', <traitlets.traitlets.ObjectName object at 0x102389dd8>), ('section_names', <bound method Configurable.section_names of <class 'IPython.core.formatters.MarkdownFormatter'>>), ('set_trait', <function HasTraits.set_trait at 0x101b4bea0>), ('setup_instance', <function HasTraits.setup_instance at 0x101b4b488>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('trait_events', <bound method HasTraits.trait_events of <class 'IPython.core.formatters.MarkdownFormatter'>>), ('trait_metadata', <function HasTraits.trait_metadata at 0x101b512f0>), ('trait_names', <function HasTraits.trait_names at 0x101b511e0>), ('traits', <function HasTraits.traits at 0x101b51268>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>), ('unobserve', <function HasTraits.unobserve at 0x101b4bc80>), ('unobserve_all', <function HasTraits.unobserve_all at 0x101b4bd08>), ('update_config', <function Configurable.update_config at 0x101bde158>)]
* Call to <listcomp> on line 1419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <listcomp> => [('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('format_type', <traitlets.traitlets.Unicode object at 0x102389cf8>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('print_method', <traitlets.traitlets.ObjectName object at 0x102389dd8>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>)]
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* traits => {'deferred_printers': <traitlets.traitlets.Dict object at 0x1023897b8>, 'enabled': <traitlets.traitlets.Bool object at 0x102389668>, 'singleton_printers': <traitlets.traitlets.Dict object at 0x1023896d8>, 'type_printers': <traitlets.traitlets.Dict object at 0x102389748>}
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'MarkdownFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'MarkdownFormatter']
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _load_config on line 131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => None
* __get__ => None
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* section_names => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => True
* _has_section => True
* Call to __getitem__ on line 252 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __getitem__ => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to merge on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* merge => None
* _find_my_config => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'MarkdownFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'MarkdownFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'MarkdownFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'MarkdownFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032e66a0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* _load_config => None
* _config_changed => None
* compatible_observer => None
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* __init__ => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => text/markdown
* __get__ => text/markdown
* Call to __new__ on line 948 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 980 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 959 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to instance_init on line 921 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to observe on line 1235 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to parse_notifier_name on line 188 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* parse_notifier_name => ('config',)
* Call to _add_notifiers on line 1176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _add_notifiers => None
* observe => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10338f4e0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b6b6d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033b7f60>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10343f908>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => True
* _validate => True
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389e48>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033ea908>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => image/svg+xml
* _validate => image/svg+xml
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10338ff60>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b72d68>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x102389e80>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032ffac8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2084 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 2082 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <lambda> => _repr_svg_
* Call to isidentifier on line 98 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* isidentifier => True
* validate => _repr_svg_
* _validate => _repr_svg_
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033e3fd0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033b0710>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* setup_instance => None
* setup_instance => None
* __new__ => <IPython.core.formatters.SVGFormatter object at 0x1032e6eb8>
* Call to __init__ on line 38 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* __get__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* _validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => parent
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* Call to __init__ on line 986 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1034372b0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* __init__ => None
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* _validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => config
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.SVGFormatter object at 0x1032e6eb8>>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.SVGFormatter object at 0x1032e6eb8>>
* Call to compatible_observer on line 803 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _config_changed on line 170 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to traits on line 1405 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to getmembers on line 224 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389e48>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x102389e80>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* getmembers => [('__call__', <function BaseFormatter.__call__ at 0x10238a9d8>), ('__class__', <class 'traitlets.traitlets.MetaHasTraits'>), ('__contains__', <function BaseFormatter.__contains__ at 0x10238aa60>), ('__delattr__', <slot wrapper '__delattr__' of 'object' objects>), ('__dict__', mappingproxy({'__module__': 'IPython.core.formatters', '__doc__': 'An SVG formatter.\n\n    To define the callables that compute the SVG representation of your\n    objects, define a :meth:`_repr_svg_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this.\n\n    The return value of this formatter should be valid SVG enclosed in\n    ```<svg>``` tags, that could be injected into an existing DOM. It should\n    *not* include the ```<html>`` or ```<body>`` tags.\n    ', 'format_type': <traitlets.traitlets.Unicode object at 0x102389e48>, 'print_method': <traitlets.traitlets.ObjectName object at 0x102389e80>, '_trait_default_generators': {}})), ('__dir__', <method '__dir__' of 'object' objects>), ('__doc__', 'An SVG formatter.\n\n    To define the callables that compute the SVG representation of your\n    objects, define a :meth:`_repr_svg_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this.\n\n    The return value of this formatter should be valid SVG enclosed in\n    ```<svg>``` tags, that could be injected into an existing DOM. It should\n    *not* include the ```<html>`` or ```<body>`` tags.\n    '), ('__eq__', <slot wrapper '__eq__' of 'object' objects>), ('__format__', <method '__format__' of 'object' objects>), ('__ge__', <slot wrapper '__ge__' of 'object' objects>), ('__getattribute__', <slot wrapper '__getattribute__' of 'object' objects>), ('__getstate__', <function HasTraits.__getstate__ at 0x101b4b620>), ('__gt__', <slot wrapper '__gt__' of 'object' objects>), ('__hash__', <slot wrapper '__hash__' of 'object' objects>), ('__init__', <function Configurable.__init__ at 0x101bd9d90>), ('__init_subclass__', <built-in method __init_subclass__ of MetaHasTraits object at 0x7f8804f9ac08>), ('__le__', <slot wrapper '__le__' of 'object' objects>), ('__lt__', <slot wrapper '__lt__' of 'object' objects>), ('__module__', 'IPython.core.formatters'), ('__ne__', <slot wrapper '__ne__' of 'object' objects>), ('__new__', <function HasDescriptors.__new__ at 0x101b4b2f0>), ('__reduce__', <method '__reduce__' of 'object' objects>), ('__reduce_ex__', <method '__reduce_ex__' of 'object' objects>), ('__repr__', <slot wrapper '__repr__' of 'object' objects>), ('__setattr__', <slot wrapper '__setattr__' of 'object' objects>), ('__setstate__', <function HasTraits.__setstate__ at 0x101b4b6a8>), ('__sizeof__', <method '__sizeof__' of 'object' objects>), ('__str__', <slot wrapper '__str__' of 'object' objects>), ('__subclasshook__', <built-in method __subclasshook__ of MetaHasTraits object at 0x7f8804f9ac08>), ('__weakref__', <attribute '__weakref__' of 'HasDescriptors' objects>), ('_add_notifiers', <function HasTraits._add_notifiers at 0x101b4ba60>), ('_check_return', <function BaseFormatter._check_return at 0x10238aae8>), ('_config_changed', <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>), ('_find_my_config', <function Configurable._find_my_config at 0x101bd9ea0>), ('_in_deferred_types', <function BaseFormatter._in_deferred_types at 0x10238ae18>), ('_load_config', <function Configurable._load_config at 0x101bd9f28>), ('_notify_trait', <function HasTraits._notify_trait at 0x101b4b950>), ('_register_validator', <function HasTraits._register_validator at 0x101b4bd90>), ('_remove_notifiers', <function HasTraits._remove_notifiers at 0x101b4bae8>), ('_return_type', (<class 'str'>,)), ('_trait_default_generators', {}), ('add_traits', <function HasTraits.add_traits at 0x101b4be18>), ('class_config_rst_doc', <bound method Configurable.class_config_rst_doc of <class 'IPython.core.formatters.SVGFormatter'>>), ('class_config_section', <bound method Configurable.class_config_section of <class 'IPython.core.formatters.SVGFormatter'>>), ('class_get_help', <bound method Configurable.class_get_help of <class 'IPython.core.formatters.SVGFormatter'>>), ('class_get_trait_help', <bound method Configurable.class_get_trait_help of <class 'IPython.core.formatters.SVGFormatter'>>), ('class_own_trait_events', <bound method HasTraits.class_own_trait_events of <class 'IPython.core.formatters.SVGFormatter'>>), ('class_own_traits', <bound method HasTraits.class_own_traits of <class 'IPython.core.formatters.SVGFormatter'>>), ('class_print_help', <bound method Configurable.class_print_help of <class 'IPython.core.formatters.SVGFormatter'>>), ('class_trait_names', <bound method HasTraits.class_trait_names of <class 'IPython.core.formatters.SVGFormatter'>>), ('class_traits', <bound method HasTraits.class_traits of <class 'IPython.core.formatters.SVGFormatter'>>), ('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('cross_validation_lock', <property object at 0x101b4a458>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('for_type', <function BaseFormatter.for_type at 0x10238ac80>), ('for_type_by_name', <function BaseFormatter.for_type_by_name at 0x10238ad08>), ('format_type', <traitlets.traitlets.Unicode object at 0x102389e48>), ('has_trait', <function HasTraits.has_trait at 0x101b51158>), ('hold_trait_notifications', <function HasTraits.hold_trait_notifications at 0x101b4b8c8>), ('lookup', <function BaseFormatter.lookup at 0x10238ab70>), ('lookup_by_type', <function BaseFormatter.lookup_by_type at 0x10238abf8>), ('notify_change', <function HasTraits.notify_change at 0x101b4b9d8>), ('observe', <function HasTraits.observe at 0x101b4bbf8>), ('on_trait_change', <function HasTraits.on_trait_change at 0x101b4bb70>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('pop', <function BaseFormatter.pop at 0x10238ad90>), ('print_method', <traitlets.traitlets.ObjectName object at 0x102389e80>), ('section_names', <bound method Configurable.section_names of <class 'IPython.core.formatters.SVGFormatter'>>), ('set_trait', <function HasTraits.set_trait at 0x101b4bea0>), ('setup_instance', <function HasTraits.setup_instance at 0x101b4b488>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('trait_events', <bound method HasTraits.trait_events of <class 'IPython.core.formatters.SVGFormatter'>>), ('trait_metadata', <function HasTraits.trait_metadata at 0x101b512f0>), ('trait_names', <function HasTraits.trait_names at 0x101b511e0>), ('traits', <function HasTraits.traits at 0x101b51268>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>), ('unobserve', <function HasTraits.unobserve at 0x101b4bc80>), ('unobserve_all', <function HasTraits.unobserve_all at 0x101b4bd08>), ('update_config', <function Configurable.update_config at 0x101bde158>)]
* Call to <listcomp> on line 1419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <listcomp> => [('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('format_type', <traitlets.traitlets.Unicode object at 0x102389e48>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('print_method', <traitlets.traitlets.ObjectName object at 0x102389e80>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>)]
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* traits => {'deferred_printers': <traitlets.traitlets.Dict object at 0x1023897b8>, 'enabled': <traitlets.traitlets.Bool object at 0x102389668>, 'singleton_printers': <traitlets.traitlets.Dict object at 0x1023896d8>, 'type_printers': <traitlets.traitlets.Dict object at 0x102389748>}
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'SVGFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'SVGFormatter']
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _load_config on line 131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => None
* __get__ => None
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* section_names => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => True
* _has_section => True
* Call to __getitem__ on line 252 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __getitem__ => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to merge on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* merge => None
* _find_my_config => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'SVGFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'SVGFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'SVGFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'SVGFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032e6080>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* _load_config => None
* _config_changed => None
* compatible_observer => None
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* __init__ => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => image/svg+xml
* __get__ => image/svg+xml
* Call to __new__ on line 948 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 980 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 959 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to instance_init on line 921 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to observe on line 1235 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to parse_notifier_name on line 188 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* parse_notifier_name => ('config',)
* Call to _add_notifiers on line 1176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _add_notifiers => None
* observe => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032d0978>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b6b6d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033eab70>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032ec2e8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => True
* _validate => True
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389ef0>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033c27f0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => image/png
* _validate => image/png
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10343f550>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b72d68>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x102389f28>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10343f6d8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2084 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 2082 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <lambda> => _repr_png_
* Call to isidentifier on line 98 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* isidentifier => True
* validate => _repr_png_
* _validate => _repr_png_
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032e6b38>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10348de80>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* setup_instance => None
* setup_instance => None
* __new__ => <IPython.core.formatters.PNGFormatter object at 0x10337f668>
* Call to __init__ on line 38 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* __get__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* _validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => parent
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* Call to __init__ on line 986 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033aa048>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* __init__ => None
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* _validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => config
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.PNGFormatter object at 0x10337f668>>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.PNGFormatter object at 0x10337f668>>
* Call to compatible_observer on line 803 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _config_changed on line 170 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to traits on line 1405 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to getmembers on line 224 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389ef0>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x102389f28>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* getmembers => [('__call__', <function BaseFormatter.__call__ at 0x10238a9d8>), ('__class__', <class 'traitlets.traitlets.MetaHasTraits'>), ('__contains__', <function BaseFormatter.__contains__ at 0x10238aa60>), ('__delattr__', <slot wrapper '__delattr__' of 'object' objects>), ('__dict__', mappingproxy({'__module__': 'IPython.core.formatters', '__doc__': 'A PNG formatter.\n\n    To define the callables that compute the PNG representation of your\n    objects, define a :meth:`_repr_png_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this.\n\n    The return value of this formatter should be raw PNG data, *not*\n    base64 encoded.\n    ', 'format_type': <traitlets.traitlets.Unicode object at 0x102389ef0>, 'print_method': <traitlets.traitlets.ObjectName object at 0x102389f28>, '_return_type': (<class 'bytes'>, <class 'str'>), '_trait_default_generators': {}})), ('__dir__', <method '__dir__' of 'object' objects>), ('__doc__', 'A PNG formatter.\n\n    To define the callables that compute the PNG representation of your\n    objects, define a :meth:`_repr_png_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this.\n\n    The return value of this formatter should be raw PNG data, *not*\n    base64 encoded.\n    '), ('__eq__', <slot wrapper '__eq__' of 'object' objects>), ('__format__', <method '__format__' of 'object' objects>), ('__ge__', <slot wrapper '__ge__' of 'object' objects>), ('__getattribute__', <slot wrapper '__getattribute__' of 'object' objects>), ('__getstate__', <function HasTraits.__getstate__ at 0x101b4b620>), ('__gt__', <slot wrapper '__gt__' of 'object' objects>), ('__hash__', <slot wrapper '__hash__' of 'object' objects>), ('__init__', <function Configurable.__init__ at 0x101bd9d90>), ('__init_subclass__', <built-in method __init_subclass__ of MetaHasTraits object at 0x7f8804f9afa8>), ('__le__', <slot wrapper '__le__' of 'object' objects>), ('__lt__', <slot wrapper '__lt__' of 'object' objects>), ('__module__', 'IPython.core.formatters'), ('__ne__', <slot wrapper '__ne__' of 'object' objects>), ('__new__', <function HasDescriptors.__new__ at 0x101b4b2f0>), ('__reduce__', <method '__reduce__' of 'object' objects>), ('__reduce_ex__', <method '__reduce_ex__' of 'object' objects>), ('__repr__', <slot wrapper '__repr__' of 'object' objects>), ('__setattr__', <slot wrapper '__setattr__' of 'object' objects>), ('__setstate__', <function HasTraits.__setstate__ at 0x101b4b6a8>), ('__sizeof__', <method '__sizeof__' of 'object' objects>), ('__str__', <slot wrapper '__str__' of 'object' objects>), ('__subclasshook__', <built-in method __subclasshook__ of MetaHasTraits object at 0x7f8804f9afa8>), ('__weakref__', <attribute '__weakref__' of 'HasDescriptors' objects>), ('_add_notifiers', <function HasTraits._add_notifiers at 0x101b4ba60>), ('_check_return', <function BaseFormatter._check_return at 0x10238aae8>), ('_config_changed', <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>), ('_find_my_config', <function Configurable._find_my_config at 0x101bd9ea0>), ('_in_deferred_types', <function BaseFormatter._in_deferred_types at 0x10238ae18>), ('_load_config', <function Configurable._load_config at 0x101bd9f28>), ('_notify_trait', <function HasTraits._notify_trait at 0x101b4b950>), ('_register_validator', <function HasTraits._register_validator at 0x101b4bd90>), ('_remove_notifiers', <function HasTraits._remove_notifiers at 0x101b4bae8>), ('_return_type', (<class 'bytes'>, <class 'str'>)), ('_trait_default_generators', {}), ('add_traits', <function HasTraits.add_traits at 0x101b4be18>), ('class_config_rst_doc', <bound method Configurable.class_config_rst_doc of <class 'IPython.core.formatters.PNGFormatter'>>), ('class_config_section', <bound method Configurable.class_config_section of <class 'IPython.core.formatters.PNGFormatter'>>), ('class_get_help', <bound method Configurable.class_get_help of <class 'IPython.core.formatters.PNGFormatter'>>), ('class_get_trait_help', <bound method Configurable.class_get_trait_help of <class 'IPython.core.formatters.PNGFormatter'>>), ('class_own_trait_events', <bound method HasTraits.class_own_trait_events of <class 'IPython.core.formatters.PNGFormatter'>>), ('class_own_traits', <bound method HasTraits.class_own_traits of <class 'IPython.core.formatters.PNGFormatter'>>), ('class_print_help', <bound method Configurable.class_print_help of <class 'IPython.core.formatters.PNGFormatter'>>), ('class_trait_names', <bound method HasTraits.class_trait_names of <class 'IPython.core.formatters.PNGFormatter'>>), ('class_traits', <bound method HasTraits.class_traits of <class 'IPython.core.formatters.PNGFormatter'>>), ('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('cross_validation_lock', <property object at 0x101b4a458>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('for_type', <function BaseFormatter.for_type at 0x10238ac80>), ('for_type_by_name', <function BaseFormatter.for_type_by_name at 0x10238ad08>), ('format_type', <traitlets.traitlets.Unicode object at 0x102389ef0>), ('has_trait', <function HasTraits.has_trait at 0x101b51158>), ('hold_trait_notifications', <function HasTraits.hold_trait_notifications at 0x101b4b8c8>), ('lookup', <function BaseFormatter.lookup at 0x10238ab70>), ('lookup_by_type', <function BaseFormatter.lookup_by_type at 0x10238abf8>), ('notify_change', <function HasTraits.notify_change at 0x101b4b9d8>), ('observe', <function HasTraits.observe at 0x101b4bbf8>), ('on_trait_change', <function HasTraits.on_trait_change at 0x101b4bb70>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('pop', <function BaseFormatter.pop at 0x10238ad90>), ('print_method', <traitlets.traitlets.ObjectName object at 0x102389f28>), ('section_names', <bound method Configurable.section_names of <class 'IPython.core.formatters.PNGFormatter'>>), ('set_trait', <function HasTraits.set_trait at 0x101b4bea0>), ('setup_instance', <function HasTraits.setup_instance at 0x101b4b488>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('trait_events', <bound method HasTraits.trait_events of <class 'IPython.core.formatters.PNGFormatter'>>), ('trait_metadata', <function HasTraits.trait_metadata at 0x101b512f0>), ('trait_names', <function HasTraits.trait_names at 0x101b511e0>), ('traits', <function HasTraits.traits at 0x101b51268>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>), ('unobserve', <function HasTraits.unobserve at 0x101b4bc80>), ('unobserve_all', <function HasTraits.unobserve_all at 0x101b4bd08>), ('update_config', <function Configurable.update_config at 0x101bde158>)]
* Call to <listcomp> on line 1419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <listcomp> => [('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('format_type', <traitlets.traitlets.Unicode object at 0x102389ef0>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('print_method', <traitlets.traitlets.ObjectName object at 0x102389f28>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>)]
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* traits => {'deferred_printers': <traitlets.traitlets.Dict object at 0x1023897b8>, 'enabled': <traitlets.traitlets.Bool object at 0x102389668>, 'singleton_printers': <traitlets.traitlets.Dict object at 0x1023896d8>, 'type_printers': <traitlets.traitlets.Dict object at 0x102389748>}
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'PNGFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'PNGFormatter']
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _load_config on line 131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => None
* __get__ => None
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* section_names => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => True
* _has_section => True
* Call to __getitem__ on line 252 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __getitem__ => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to merge on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* merge => None
* _find_my_config => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'PNGFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'PNGFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'PNGFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'PNGFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033ea780>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* _load_config => None
* _config_changed => None
* compatible_observer => None
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* __init__ => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => image/png
* __get__ => image/png
* Call to __new__ on line 948 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 980 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 959 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to instance_init on line 921 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to observe on line 1235 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to parse_notifier_name on line 188 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* parse_notifier_name => ('config',)
* Call to _add_notifiers on line 1176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _add_notifiers => None
* observe => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033c9da0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b6b6d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10344efd0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032e6780>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => True
* _validate => True
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102395240>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032e64e0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => application/pdf
* _validate => application/pdf
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10348ddd8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b72d68>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x102395278>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033eacf8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2084 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 2082 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <lambda> => _repr_pdf_
* Call to isidentifier on line 98 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* isidentifier => True
* validate => _repr_pdf_
* _validate => _repr_pdf_
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033aac88>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10343f278>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* setup_instance => None
* setup_instance => None
* __new__ => <IPython.core.formatters.PDFFormatter object at 0x10338a2e8>
* Call to __init__ on line 38 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* __get__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* _validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => parent
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* Call to __init__ on line 986 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033c9240>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* __init__ => None
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* _validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => config
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.PDFFormatter object at 0x10338a2e8>>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.PDFFormatter object at 0x10338a2e8>>
* Call to compatible_observer on line 803 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _config_changed on line 170 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to traits on line 1405 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to getmembers on line 224 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102395240>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x102395278>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* getmembers => [('__call__', <function BaseFormatter.__call__ at 0x10238a9d8>), ('__class__', <class 'traitlets.traitlets.MetaHasTraits'>), ('__contains__', <function BaseFormatter.__contains__ at 0x10238aa60>), ('__delattr__', <slot wrapper '__delattr__' of 'object' objects>), ('__dict__', mappingproxy({'__module__': 'IPython.core.formatters', '__doc__': 'A PDF formatter.\n\n    To define the callables that compute the PDF representation of your\n    objects, define a :meth:`_repr_pdf_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this.\n\n    The return value of this formatter should be raw PDF data, *not*\n    base64 encoded.\n    ', 'format_type': <traitlets.traitlets.Unicode object at 0x102395240>, 'print_method': <traitlets.traitlets.ObjectName object at 0x102395278>, '_return_type': (<class 'bytes'>, <class 'str'>), '_trait_default_generators': {}})), ('__dir__', <method '__dir__' of 'object' objects>), ('__doc__', 'A PDF formatter.\n\n    To define the callables that compute the PDF representation of your\n    objects, define a :meth:`_repr_pdf_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this.\n\n    The return value of this formatter should be raw PDF data, *not*\n    base64 encoded.\n    '), ('__eq__', <slot wrapper '__eq__' of 'object' objects>), ('__format__', <method '__format__' of 'object' objects>), ('__ge__', <slot wrapper '__ge__' of 'object' objects>), ('__getattribute__', <slot wrapper '__getattribute__' of 'object' objects>), ('__getstate__', <function HasTraits.__getstate__ at 0x101b4b620>), ('__gt__', <slot wrapper '__gt__' of 'object' objects>), ('__hash__', <slot wrapper '__hash__' of 'object' objects>), ('__init__', <function Configurable.__init__ at 0x101bd9d90>), ('__init_subclass__', <built-in method __init_subclass__ of MetaHasTraits object at 0x7f8804d4b288>), ('__le__', <slot wrapper '__le__' of 'object' objects>), ('__lt__', <slot wrapper '__lt__' of 'object' objects>), ('__module__', 'IPython.core.formatters'), ('__ne__', <slot wrapper '__ne__' of 'object' objects>), ('__new__', <function HasDescriptors.__new__ at 0x101b4b2f0>), ('__reduce__', <method '__reduce__' of 'object' objects>), ('__reduce_ex__', <method '__reduce_ex__' of 'object' objects>), ('__repr__', <slot wrapper '__repr__' of 'object' objects>), ('__setattr__', <slot wrapper '__setattr__' of 'object' objects>), ('__setstate__', <function HasTraits.__setstate__ at 0x101b4b6a8>), ('__sizeof__', <method '__sizeof__' of 'object' objects>), ('__str__', <slot wrapper '__str__' of 'object' objects>), ('__subclasshook__', <built-in method __subclasshook__ of MetaHasTraits object at 0x7f8804d4b288>), ('__weakref__', <attribute '__weakref__' of 'HasDescriptors' objects>), ('_add_notifiers', <function HasTraits._add_notifiers at 0x101b4ba60>), ('_check_return', <function BaseFormatter._check_return at 0x10238aae8>), ('_config_changed', <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>), ('_find_my_config', <function Configurable._find_my_config at 0x101bd9ea0>), ('_in_deferred_types', <function BaseFormatter._in_deferred_types at 0x10238ae18>), ('_load_config', <function Configurable._load_config at 0x101bd9f28>), ('_notify_trait', <function HasTraits._notify_trait at 0x101b4b950>), ('_register_validator', <function HasTraits._register_validator at 0x101b4bd90>), ('_remove_notifiers', <function HasTraits._remove_notifiers at 0x101b4bae8>), ('_return_type', (<class 'bytes'>, <class 'str'>)), ('_trait_default_generators', {}), ('add_traits', <function HasTraits.add_traits at 0x101b4be18>), ('class_config_rst_doc', <bound method Configurable.class_config_rst_doc of <class 'IPython.core.formatters.PDFFormatter'>>), ('class_config_section', <bound method Configurable.class_config_section of <class 'IPython.core.formatters.PDFFormatter'>>), ('class_get_help', <bound method Configurable.class_get_help of <class 'IPython.core.formatters.PDFFormatter'>>), ('class_get_trait_help', <bound method Configurable.class_get_trait_help of <class 'IPython.core.formatters.PDFFormatter'>>), ('class_own_trait_events', <bound method HasTraits.class_own_trait_events of <class 'IPython.core.formatters.PDFFormatter'>>), ('class_own_traits', <bound method HasTraits.class_own_traits of <class 'IPython.core.formatters.PDFFormatter'>>), ('class_print_help', <bound method Configurable.class_print_help of <class 'IPython.core.formatters.PDFFormatter'>>), ('class_trait_names', <bound method HasTraits.class_trait_names of <class 'IPython.core.formatters.PDFFormatter'>>), ('class_traits', <bound method HasTraits.class_traits of <class 'IPython.core.formatters.PDFFormatter'>>), ('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('cross_validation_lock', <property object at 0x101b4a458>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('for_type', <function BaseFormatter.for_type at 0x10238ac80>), ('for_type_by_name', <function BaseFormatter.for_type_by_name at 0x10238ad08>), ('format_type', <traitlets.traitlets.Unicode object at 0x102395240>), ('has_trait', <function HasTraits.has_trait at 0x101b51158>), ('hold_trait_notifications', <function HasTraits.hold_trait_notifications at 0x101b4b8c8>), ('lookup', <function BaseFormatter.lookup at 0x10238ab70>), ('lookup_by_type', <function BaseFormatter.lookup_by_type at 0x10238abf8>), ('notify_change', <function HasTraits.notify_change at 0x101b4b9d8>), ('observe', <function HasTraits.observe at 0x101b4bbf8>), ('on_trait_change', <function HasTraits.on_trait_change at 0x101b4bb70>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('pop', <function BaseFormatter.pop at 0x10238ad90>), ('print_method', <traitlets.traitlets.ObjectName object at 0x102395278>), ('section_names', <bound method Configurable.section_names of <class 'IPython.core.formatters.PDFFormatter'>>), ('set_trait', <function HasTraits.set_trait at 0x101b4bea0>), ('setup_instance', <function HasTraits.setup_instance at 0x101b4b488>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('trait_events', <bound method HasTraits.trait_events of <class 'IPython.core.formatters.PDFFormatter'>>), ('trait_metadata', <function HasTraits.trait_metadata at 0x101b512f0>), ('trait_names', <function HasTraits.trait_names at 0x101b511e0>), ('traits', <function HasTraits.traits at 0x101b51268>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>), ('unobserve', <function HasTraits.unobserve at 0x101b4bc80>), ('unobserve_all', <function HasTraits.unobserve_all at 0x101b4bd08>), ('update_config', <function Configurable.update_config at 0x101bde158>)]
* Call to <listcomp> on line 1419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <listcomp> => [('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('format_type', <traitlets.traitlets.Unicode object at 0x102395240>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('print_method', <traitlets.traitlets.ObjectName object at 0x102395278>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>)]
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* traits => {'deferred_printers': <traitlets.traitlets.Dict object at 0x1023897b8>, 'enabled': <traitlets.traitlets.Bool object at 0x102389668>, 'singleton_printers': <traitlets.traitlets.Dict object at 0x1023896d8>, 'type_printers': <traitlets.traitlets.Dict object at 0x102389748>}
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'PDFFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'PDFFormatter']
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _load_config on line 131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => None
* __get__ => None
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* section_names => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => True
* _has_section => True
* Call to __getitem__ on line 252 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __getitem__ => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to merge on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* merge => None
* _find_my_config => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'PDFFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'PDFFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'PDFFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'PDFFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1034415c0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* _load_config => None
* _config_changed => None
* compatible_observer => None
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* __init__ => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => application/pdf
* __get__ => application/pdf
* Call to __new__ on line 948 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 980 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 959 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to instance_init on line 921 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to observe on line 1235 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to parse_notifier_name on line 188 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* parse_notifier_name => ('config',)
* Call to _add_notifiers on line 1176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _add_notifiers => None
* observe => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032ecbe0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b6b6d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032eccc0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x103437128>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => True
* _validate => True
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389f98>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x103441f60>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => image/jpeg
* _validate => image/jpeg
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1034415f8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b72d68>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x102389fd0>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x103437b70>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2084 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 2082 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <lambda> => _repr_jpeg_
* Call to isidentifier on line 98 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* isidentifier => True
* validate => _repr_jpeg_
* _validate => _repr_jpeg_
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033b52e8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032d0cf8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* setup_instance => None
* setup_instance => None
* __new__ => <IPython.core.formatters.JPEGFormatter object at 0x1034419b0>
* Call to __init__ on line 38 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* __get__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* _validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => parent
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* Call to __init__ on line 986 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033c2f60>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* __init__ => None
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* _validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => config
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.JPEGFormatter object at 0x1034419b0>>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.JPEGFormatter object at 0x1034419b0>>
* Call to compatible_observer on line 803 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _config_changed on line 170 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to traits on line 1405 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to getmembers on line 224 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102389f98>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x102389fd0>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* getmembers => [('__call__', <function BaseFormatter.__call__ at 0x10238a9d8>), ('__class__', <class 'traitlets.traitlets.MetaHasTraits'>), ('__contains__', <function BaseFormatter.__contains__ at 0x10238aa60>), ('__delattr__', <slot wrapper '__delattr__' of 'object' objects>), ('__dict__', mappingproxy({'__module__': 'IPython.core.formatters', '__doc__': 'A JPEG formatter.\n\n    To define the callables that compute the JPEG representation of your\n    objects, define a :meth:`_repr_jpeg_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this.\n\n    The return value of this formatter should be raw JPEG data, *not*\n    base64 encoded.\n    ', 'format_type': <traitlets.traitlets.Unicode object at 0x102389f98>, 'print_method': <traitlets.traitlets.ObjectName object at 0x102389fd0>, '_return_type': (<class 'bytes'>, <class 'str'>), '_trait_default_generators': {}})), ('__dir__', <method '__dir__' of 'object' objects>), ('__doc__', 'A JPEG formatter.\n\n    To define the callables that compute the JPEG representation of your\n    objects, define a :meth:`_repr_jpeg_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this.\n\n    The return value of this formatter should be raw JPEG data, *not*\n    base64 encoded.\n    '), ('__eq__', <slot wrapper '__eq__' of 'object' objects>), ('__format__', <method '__format__' of 'object' objects>), ('__ge__', <slot wrapper '__ge__' of 'object' objects>), ('__getattribute__', <slot wrapper '__getattribute__' of 'object' objects>), ('__getstate__', <function HasTraits.__getstate__ at 0x101b4b620>), ('__gt__', <slot wrapper '__gt__' of 'object' objects>), ('__hash__', <slot wrapper '__hash__' of 'object' objects>), ('__init__', <function Configurable.__init__ at 0x101bd9d90>), ('__init_subclass__', <built-in method __init_subclass__ of MetaHasTraits object at 0x7f8804f9b348>), ('__le__', <slot wrapper '__le__' of 'object' objects>), ('__lt__', <slot wrapper '__lt__' of 'object' objects>), ('__module__', 'IPython.core.formatters'), ('__ne__', <slot wrapper '__ne__' of 'object' objects>), ('__new__', <function HasDescriptors.__new__ at 0x101b4b2f0>), ('__reduce__', <method '__reduce__' of 'object' objects>), ('__reduce_ex__', <method '__reduce_ex__' of 'object' objects>), ('__repr__', <slot wrapper '__repr__' of 'object' objects>), ('__setattr__', <slot wrapper '__setattr__' of 'object' objects>), ('__setstate__', <function HasTraits.__setstate__ at 0x101b4b6a8>), ('__sizeof__', <method '__sizeof__' of 'object' objects>), ('__str__', <slot wrapper '__str__' of 'object' objects>), ('__subclasshook__', <built-in method __subclasshook__ of MetaHasTraits object at 0x7f8804f9b348>), ('__weakref__', <attribute '__weakref__' of 'HasDescriptors' objects>), ('_add_notifiers', <function HasTraits._add_notifiers at 0x101b4ba60>), ('_check_return', <function BaseFormatter._check_return at 0x10238aae8>), ('_config_changed', <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>), ('_find_my_config', <function Configurable._find_my_config at 0x101bd9ea0>), ('_in_deferred_types', <function BaseFormatter._in_deferred_types at 0x10238ae18>), ('_load_config', <function Configurable._load_config at 0x101bd9f28>), ('_notify_trait', <function HasTraits._notify_trait at 0x101b4b950>), ('_register_validator', <function HasTraits._register_validator at 0x101b4bd90>), ('_remove_notifiers', <function HasTraits._remove_notifiers at 0x101b4bae8>), ('_return_type', (<class 'bytes'>, <class 'str'>)), ('_trait_default_generators', {}), ('add_traits', <function HasTraits.add_traits at 0x101b4be18>), ('class_config_rst_doc', <bound method Configurable.class_config_rst_doc of <class 'IPython.core.formatters.JPEGFormatter'>>), ('class_config_section', <bound method Configurable.class_config_section of <class 'IPython.core.formatters.JPEGFormatter'>>), ('class_get_help', <bound method Configurable.class_get_help of <class 'IPython.core.formatters.JPEGFormatter'>>), ('class_get_trait_help', <bound method Configurable.class_get_trait_help of <class 'IPython.core.formatters.JPEGFormatter'>>), ('class_own_trait_events', <bound method HasTraits.class_own_trait_events of <class 'IPython.core.formatters.JPEGFormatter'>>), ('class_own_traits', <bound method HasTraits.class_own_traits of <class 'IPython.core.formatters.JPEGFormatter'>>), ('class_print_help', <bound method Configurable.class_print_help of <class 'IPython.core.formatters.JPEGFormatter'>>), ('class_trait_names', <bound method HasTraits.class_trait_names of <class 'IPython.core.formatters.JPEGFormatter'>>), ('class_traits', <bound method HasTraits.class_traits of <class 'IPython.core.formatters.JPEGFormatter'>>), ('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('cross_validation_lock', <property object at 0x101b4a458>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('for_type', <function BaseFormatter.for_type at 0x10238ac80>), ('for_type_by_name', <function BaseFormatter.for_type_by_name at 0x10238ad08>), ('format_type', <traitlets.traitlets.Unicode object at 0x102389f98>), ('has_trait', <function HasTraits.has_trait at 0x101b51158>), ('hold_trait_notifications', <function HasTraits.hold_trait_notifications at 0x101b4b8c8>), ('lookup', <function BaseFormatter.lookup at 0x10238ab70>), ('lookup_by_type', <function BaseFormatter.lookup_by_type at 0x10238abf8>), ('notify_change', <function HasTraits.notify_change at 0x101b4b9d8>), ('observe', <function HasTraits.observe at 0x101b4bbf8>), ('on_trait_change', <function HasTraits.on_trait_change at 0x101b4bb70>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('pop', <function BaseFormatter.pop at 0x10238ad90>), ('print_method', <traitlets.traitlets.ObjectName object at 0x102389fd0>), ('section_names', <bound method Configurable.section_names of <class 'IPython.core.formatters.JPEGFormatter'>>), ('set_trait', <function HasTraits.set_trait at 0x101b4bea0>), ('setup_instance', <function HasTraits.setup_instance at 0x101b4b488>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('trait_events', <bound method HasTraits.trait_events of <class 'IPython.core.formatters.JPEGFormatter'>>), ('trait_metadata', <function HasTraits.trait_metadata at 0x101b512f0>), ('trait_names', <function HasTraits.trait_names at 0x101b511e0>), ('traits', <function HasTraits.traits at 0x101b51268>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>), ('unobserve', <function HasTraits.unobserve at 0x101b4bc80>), ('unobserve_all', <function HasTraits.unobserve_all at 0x101b4bd08>), ('update_config', <function Configurable.update_config at 0x101bde158>)]
* Call to <listcomp> on line 1419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <listcomp> => [('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('format_type', <traitlets.traitlets.Unicode object at 0x102389f98>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('print_method', <traitlets.traitlets.ObjectName object at 0x102389fd0>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>)]
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* traits => {'deferred_printers': <traitlets.traitlets.Dict object at 0x1023897b8>, 'enabled': <traitlets.traitlets.Bool object at 0x102389668>, 'singleton_printers': <traitlets.traitlets.Dict object at 0x1023896d8>, 'type_printers': <traitlets.traitlets.Dict object at 0x102389748>}
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'JPEGFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'JPEGFormatter']
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _load_config on line 131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => None
* __get__ => None
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* section_names => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => True
* _has_section => True
* Call to __getitem__ on line 252 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __getitem__ => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to merge on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* merge => None
* _find_my_config => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'JPEGFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'JPEGFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'JPEGFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'JPEGFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x103487cc0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* _load_config => None
* _config_changed => None
* compatible_observer => None
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* __init__ => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => image/jpeg
* __get__ => image/jpeg
* Call to __new__ on line 948 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 980 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 959 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to instance_init on line 921 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to observe on line 1235 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to parse_notifier_name on line 188 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* parse_notifier_name => ('config',)
* Call to _add_notifiers on line 1176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _add_notifiers => None
* observe => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x103441588>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b6b6d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033b59b0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032d0710>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => True
* _validate => True
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102395080>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032d07b8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => text/latex
* _validate => text/latex
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033c2e10>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b72d68>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x1023950b8>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033c2780>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2084 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 2082 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <lambda> => _repr_latex_
* Call to isidentifier on line 98 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* isidentifier => True
* validate => _repr_latex_
* _validate => _repr_latex_
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x103397358>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032d0898>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* setup_instance => None
* setup_instance => None
* __new__ => <IPython.core.formatters.LatexFormatter object at 0x103441c50>
* Call to __init__ on line 38 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* __get__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* _validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => parent
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* Call to __init__ on line 986 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x103397cf8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* __init__ => None
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* _validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => config
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.LatexFormatter object at 0x103441c50>>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.LatexFormatter object at 0x103441c50>>
* Call to compatible_observer on line 803 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _config_changed on line 170 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to traits on line 1405 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to getmembers on line 224 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102395080>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x1023950b8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* getmembers => [('__call__', <function BaseFormatter.__call__ at 0x10238a9d8>), ('__class__', <class 'traitlets.traitlets.MetaHasTraits'>), ('__contains__', <function BaseFormatter.__contains__ at 0x10238aa60>), ('__delattr__', <slot wrapper '__delattr__' of 'object' objects>), ('__dict__', mappingproxy({'__module__': 'IPython.core.formatters', '__doc__': 'A LaTeX formatter.\n\n    To define the callables that compute the LaTeX representation of your\n    objects, define a :meth:`_repr_latex_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this.\n\n    The return value of this formatter should be a valid LaTeX equation,\n    enclosed in either ```$```, ```$$``` or another LaTeX equation\n    environment.\n    ', 'format_type': <traitlets.traitlets.Unicode object at 0x102395080>, 'print_method': <traitlets.traitlets.ObjectName object at 0x1023950b8>, '_trait_default_generators': {}})), ('__dir__', <method '__dir__' of 'object' objects>), ('__doc__', 'A LaTeX formatter.\n\n    To define the callables that compute the LaTeX representation of your\n    objects, define a :meth:`_repr_latex_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this.\n\n    The return value of this formatter should be a valid LaTeX equation,\n    enclosed in either ```$```, ```$$``` or another LaTeX equation\n    environment.\n    '), ('__eq__', <slot wrapper '__eq__' of 'object' objects>), ('__format__', <method '__format__' of 'object' objects>), ('__ge__', <slot wrapper '__ge__' of 'object' objects>), ('__getattribute__', <slot wrapper '__getattribute__' of 'object' objects>), ('__getstate__', <function HasTraits.__getstate__ at 0x101b4b620>), ('__gt__', <slot wrapper '__gt__' of 'object' objects>), ('__hash__', <slot wrapper '__hash__' of 'object' objects>), ('__init__', <function Configurable.__init__ at 0x101bd9d90>), ('__init_subclass__', <built-in method __init_subclass__ of MetaHasTraits object at 0x7f8804f9b6e8>), ('__le__', <slot wrapper '__le__' of 'object' objects>), ('__lt__', <slot wrapper '__lt__' of 'object' objects>), ('__module__', 'IPython.core.formatters'), ('__ne__', <slot wrapper '__ne__' of 'object' objects>), ('__new__', <function HasDescriptors.__new__ at 0x101b4b2f0>), ('__reduce__', <method '__reduce__' of 'object' objects>), ('__reduce_ex__', <method '__reduce_ex__' of 'object' objects>), ('__repr__', <slot wrapper '__repr__' of 'object' objects>), ('__setattr__', <slot wrapper '__setattr__' of 'object' objects>), ('__setstate__', <function HasTraits.__setstate__ at 0x101b4b6a8>), ('__sizeof__', <method '__sizeof__' of 'object' objects>), ('__str__', <slot wrapper '__str__' of 'object' objects>), ('__subclasshook__', <built-in method __subclasshook__ of MetaHasTraits object at 0x7f8804f9b6e8>), ('__weakref__', <attribute '__weakref__' of 'HasDescriptors' objects>), ('_add_notifiers', <function HasTraits._add_notifiers at 0x101b4ba60>), ('_check_return', <function BaseFormatter._check_return at 0x10238aae8>), ('_config_changed', <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>), ('_find_my_config', <function Configurable._find_my_config at 0x101bd9ea0>), ('_in_deferred_types', <function BaseFormatter._in_deferred_types at 0x10238ae18>), ('_load_config', <function Configurable._load_config at 0x101bd9f28>), ('_notify_trait', <function HasTraits._notify_trait at 0x101b4b950>), ('_register_validator', <function HasTraits._register_validator at 0x101b4bd90>), ('_remove_notifiers', <function HasTraits._remove_notifiers at 0x101b4bae8>), ('_return_type', (<class 'str'>,)), ('_trait_default_generators', {}), ('add_traits', <function HasTraits.add_traits at 0x101b4be18>), ('class_config_rst_doc', <bound method Configurable.class_config_rst_doc of <class 'IPython.core.formatters.LatexFormatter'>>), ('class_config_section', <bound method Configurable.class_config_section of <class 'IPython.core.formatters.LatexFormatter'>>), ('class_get_help', <bound method Configurable.class_get_help of <class 'IPython.core.formatters.LatexFormatter'>>), ('class_get_trait_help', <bound method Configurable.class_get_trait_help of <class 'IPython.core.formatters.LatexFormatter'>>), ('class_own_trait_events', <bound method HasTraits.class_own_trait_events of <class 'IPython.core.formatters.LatexFormatter'>>), ('class_own_traits', <bound method HasTraits.class_own_traits of <class 'IPython.core.formatters.LatexFormatter'>>), ('class_print_help', <bound method Configurable.class_print_help of <class 'IPython.core.formatters.LatexFormatter'>>), ('class_trait_names', <bound method HasTraits.class_trait_names of <class 'IPython.core.formatters.LatexFormatter'>>), ('class_traits', <bound method HasTraits.class_traits of <class 'IPython.core.formatters.LatexFormatter'>>), ('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('cross_validation_lock', <property object at 0x101b4a458>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('for_type', <function BaseFormatter.for_type at 0x10238ac80>), ('for_type_by_name', <function BaseFormatter.for_type_by_name at 0x10238ad08>), ('format_type', <traitlets.traitlets.Unicode object at 0x102395080>), ('has_trait', <function HasTraits.has_trait at 0x101b51158>), ('hold_trait_notifications', <function HasTraits.hold_trait_notifications at 0x101b4b8c8>), ('lookup', <function BaseFormatter.lookup at 0x10238ab70>), ('lookup_by_type', <function BaseFormatter.lookup_by_type at 0x10238abf8>), ('notify_change', <function HasTraits.notify_change at 0x101b4b9d8>), ('observe', <function HasTraits.observe at 0x101b4bbf8>), ('on_trait_change', <function HasTraits.on_trait_change at 0x101b4bb70>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('pop', <function BaseFormatter.pop at 0x10238ad90>), ('print_method', <traitlets.traitlets.ObjectName object at 0x1023950b8>), ('section_names', <bound method Configurable.section_names of <class 'IPython.core.formatters.LatexFormatter'>>), ('set_trait', <function HasTraits.set_trait at 0x101b4bea0>), ('setup_instance', <function HasTraits.setup_instance at 0x101b4b488>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('trait_events', <bound method HasTraits.trait_events of <class 'IPython.core.formatters.LatexFormatter'>>), ('trait_metadata', <function HasTraits.trait_metadata at 0x101b512f0>), ('trait_names', <function HasTraits.trait_names at 0x101b511e0>), ('traits', <function HasTraits.traits at 0x101b51268>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>), ('unobserve', <function HasTraits.unobserve at 0x101b4bc80>), ('unobserve_all', <function HasTraits.unobserve_all at 0x101b4bd08>), ('update_config', <function Configurable.update_config at 0x101bde158>)]
* Call to <listcomp> on line 1419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <listcomp> => [('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('format_type', <traitlets.traitlets.Unicode object at 0x102395080>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('print_method', <traitlets.traitlets.ObjectName object at 0x1023950b8>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>)]
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* traits => {'deferred_printers': <traitlets.traitlets.Dict object at 0x1023897b8>, 'enabled': <traitlets.traitlets.Bool object at 0x102389668>, 'singleton_printers': <traitlets.traitlets.Dict object at 0x1023896d8>, 'type_printers': <traitlets.traitlets.Dict object at 0x102389748>}
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'LatexFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'LatexFormatter']
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _load_config on line 131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => None
* __get__ => None
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* section_names => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => True
* _has_section => True
* Call to __getitem__ on line 252 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __getitem__ => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to merge on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* merge => None
* _find_my_config => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'LatexFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'LatexFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'LatexFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'LatexFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032d0eb8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* _load_config => None
* _config_changed => None
* compatible_observer => None
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* __init__ => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => text/latex
* __get__ => text/latex
* Call to __new__ on line 948 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 980 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 959 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to instance_init on line 921 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to observe on line 1235 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to parse_notifier_name on line 188 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* parse_notifier_name => ('config',)
* Call to _add_notifiers on line 1176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _add_notifiers => None
* observe => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033b5e80>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b6b6d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x103441198>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033b7cc0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => True
* _validate => True
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102395128>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032d02b0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => application/json
* _validate => application/json
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032ec748>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b72d68>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x102395160>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032eca90>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2084 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 2082 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <lambda> => _repr_json_
* Call to isidentifier on line 98 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* isidentifier => True
* validate => _repr_json_
* _validate => _repr_json_
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10337f0b8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10337f4a8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* setup_instance => None
* setup_instance => None
* __new__ => <IPython.core.formatters.JSONFormatter object at 0x1033b51d0>
* Call to __init__ on line 38 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* __get__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* _validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => parent
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* Call to __init__ on line 986 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033c2c50>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* __init__ => None
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* _validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => config
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.JSONFormatter object at 0x1033b51d0>>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.JSONFormatter object at 0x1033b51d0>>
* Call to compatible_observer on line 803 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _config_changed on line 170 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to traits on line 1405 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to getmembers on line 224 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102395128>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x102395160>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* getmembers => [('__call__', <function BaseFormatter.__call__ at 0x10238a9d8>), ('__class__', <class 'traitlets.traitlets.MetaHasTraits'>), ('__contains__', <function BaseFormatter.__contains__ at 0x10238aa60>), ('__delattr__', <slot wrapper '__delattr__' of 'object' objects>), ('__dict__', mappingproxy({'__module__': 'IPython.core.formatters', '__doc__': 'A JSON string formatter.\n\n    To define the callables that compute the JSONable representation of\n    your objects, define a :meth:`_repr_json_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this.\n\n    The return value of this formatter should be a JSONable list or dict.\n    JSON scalars (None, number, string) are not allowed, only dict or list containers.\n    ', 'format_type': <traitlets.traitlets.Unicode object at 0x102395128>, '_return_type': (<class 'list'>, <class 'dict'>), 'print_method': <traitlets.traitlets.ObjectName object at 0x102395160>, '_check_return': <function JSONFormatter._check_return at 0x102390268>, '_trait_default_generators': {}})), ('__dir__', <method '__dir__' of 'object' objects>), ('__doc__', 'A JSON string formatter.\n\n    To define the callables that compute the JSONable representation of\n    your objects, define a :meth:`_repr_json_` method or use the :meth:`for_type`\n    or :meth:`for_type_by_name` methods to register functions that handle\n    this.\n\n    The return value of this formatter should be a JSONable list or dict.\n    JSON scalars (None, number, string) are not allowed, only dict or list containers.\n    '), ('__eq__', <slot wrapper '__eq__' of 'object' objects>), ('__format__', <method '__format__' of 'object' objects>), ('__ge__', <slot wrapper '__ge__' of 'object' objects>), ('__getattribute__', <slot wrapper '__getattribute__' of 'object' objects>), ('__getstate__', <function HasTraits.__getstate__ at 0x101b4b620>), ('__gt__', <slot wrapper '__gt__' of 'object' objects>), ('__hash__', <slot wrapper '__hash__' of 'object' objects>), ('__init__', <function Configurable.__init__ at 0x101bd9d90>), ('__init_subclass__', <built-in method __init_subclass__ of MetaHasTraits object at 0x7f8804f9ba88>), ('__le__', <slot wrapper '__le__' of 'object' objects>), ('__lt__', <slot wrapper '__lt__' of 'object' objects>), ('__module__', 'IPython.core.formatters'), ('__ne__', <slot wrapper '__ne__' of 'object' objects>), ('__new__', <function HasDescriptors.__new__ at 0x101b4b2f0>), ('__reduce__', <method '__reduce__' of 'object' objects>), ('__reduce_ex__', <method '__reduce_ex__' of 'object' objects>), ('__repr__', <slot wrapper '__repr__' of 'object' objects>), ('__setattr__', <slot wrapper '__setattr__' of 'object' objects>), ('__setstate__', <function HasTraits.__setstate__ at 0x101b4b6a8>), ('__sizeof__', <method '__sizeof__' of 'object' objects>), ('__str__', <slot wrapper '__str__' of 'object' objects>), ('__subclasshook__', <built-in method __subclasshook__ of MetaHasTraits object at 0x7f8804f9ba88>), ('__weakref__', <attribute '__weakref__' of 'HasDescriptors' objects>), ('_add_notifiers', <function HasTraits._add_notifiers at 0x101b4ba60>), ('_check_return', <function JSONFormatter._check_return at 0x102390268>), ('_config_changed', <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>), ('_find_my_config', <function Configurable._find_my_config at 0x101bd9ea0>), ('_in_deferred_types', <function BaseFormatter._in_deferred_types at 0x10238ae18>), ('_load_config', <function Configurable._load_config at 0x101bd9f28>), ('_notify_trait', <function HasTraits._notify_trait at 0x101b4b950>), ('_register_validator', <function HasTraits._register_validator at 0x101b4bd90>), ('_remove_notifiers', <function HasTraits._remove_notifiers at 0x101b4bae8>), ('_return_type', (<class 'list'>, <class 'dict'>)), ('_trait_default_generators', {}), ('add_traits', <function HasTraits.add_traits at 0x101b4be18>), ('class_config_rst_doc', <bound method Configurable.class_config_rst_doc of <class 'IPython.core.formatters.JSONFormatter'>>), ('class_config_section', <bound method Configurable.class_config_section of <class 'IPython.core.formatters.JSONFormatter'>>), ('class_get_help', <bound method Configurable.class_get_help of <class 'IPython.core.formatters.JSONFormatter'>>), ('class_get_trait_help', <bound method Configurable.class_get_trait_help of <class 'IPython.core.formatters.JSONFormatter'>>), ('class_own_trait_events', <bound method HasTraits.class_own_trait_events of <class 'IPython.core.formatters.JSONFormatter'>>), ('class_own_traits', <bound method HasTraits.class_own_traits of <class 'IPython.core.formatters.JSONFormatter'>>), ('class_print_help', <bound method Configurable.class_print_help of <class 'IPython.core.formatters.JSONFormatter'>>), ('class_trait_names', <bound method HasTraits.class_trait_names of <class 'IPython.core.formatters.JSONFormatter'>>), ('class_traits', <bound method HasTraits.class_traits of <class 'IPython.core.formatters.JSONFormatter'>>), ('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('cross_validation_lock', <property object at 0x101b4a458>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('for_type', <function BaseFormatter.for_type at 0x10238ac80>), ('for_type_by_name', <function BaseFormatter.for_type_by_name at 0x10238ad08>), ('format_type', <traitlets.traitlets.Unicode object at 0x102395128>), ('has_trait', <function HasTraits.has_trait at 0x101b51158>), ('hold_trait_notifications', <function HasTraits.hold_trait_notifications at 0x101b4b8c8>), ('lookup', <function BaseFormatter.lookup at 0x10238ab70>), ('lookup_by_type', <function BaseFormatter.lookup_by_type at 0x10238abf8>), ('notify_change', <function HasTraits.notify_change at 0x101b4b9d8>), ('observe', <function HasTraits.observe at 0x101b4bbf8>), ('on_trait_change', <function HasTraits.on_trait_change at 0x101b4bb70>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('pop', <function BaseFormatter.pop at 0x10238ad90>), ('print_method', <traitlets.traitlets.ObjectName object at 0x102395160>), ('section_names', <bound method Configurable.section_names of <class 'IPython.core.formatters.JSONFormatter'>>), ('set_trait', <function HasTraits.set_trait at 0x101b4bea0>), ('setup_instance', <function HasTraits.setup_instance at 0x101b4b488>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('trait_events', <bound method HasTraits.trait_events of <class 'IPython.core.formatters.JSONFormatter'>>), ('trait_metadata', <function HasTraits.trait_metadata at 0x101b512f0>), ('trait_names', <function HasTraits.trait_names at 0x101b511e0>), ('traits', <function HasTraits.traits at 0x101b51268>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>), ('unobserve', <function HasTraits.unobserve at 0x101b4bc80>), ('unobserve_all', <function HasTraits.unobserve_all at 0x101b4bd08>), ('update_config', <function Configurable.update_config at 0x101bde158>)]
* Call to <listcomp> on line 1419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <listcomp> => [('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('format_type', <traitlets.traitlets.Unicode object at 0x102395128>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('print_method', <traitlets.traitlets.ObjectName object at 0x102395160>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>)]
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* traits => {'deferred_printers': <traitlets.traitlets.Dict object at 0x1023897b8>, 'enabled': <traitlets.traitlets.Bool object at 0x102389668>, 'singleton_printers': <traitlets.traitlets.Dict object at 0x1023896d8>, 'type_printers': <traitlets.traitlets.Dict object at 0x102389748>}
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'JSONFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'JSONFormatter']
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _load_config on line 131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => None
* __get__ => None
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* section_names => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => True
* _has_section => True
* Call to __getitem__ on line 252 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __getitem__ => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to merge on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* merge => None
* _find_my_config => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'JSONFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'JSONFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'JSONFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'JSONFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033c25f8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* _load_config => None
* _config_changed => None
* compatible_observer => None
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* __init__ => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => application/json
* __get__ => application/json
* Call to __new__ on line 948 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 980 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to setup_instance on line 959 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to instance_init on line 921 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to observe on line 1235 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to parse_notifier_name on line 188 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* parse_notifier_name => ('config',)
* Call to _add_notifiers on line 1176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _add_notifiers => None
* observe => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x103437b70>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b6b6d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10337f4e0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033b5240>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => True
* _validate => True
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102395208>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033b55c0>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2043 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => application/javascript
* _validate => application/javascript
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10348d780>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Instance object at 0x101b72d68>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x102915ba8>
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10348de80>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => None
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2084 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to <lambda> on line 2082 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <lambda> => _repr_javascript_
* Call to isidentifier on line 98 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* isidentifier => True
* validate => _repr_javascript_
* _validate => _repr_javascript_
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x10338acf8>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* Call to instance_init on line 2564 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to instance_init on line 1688 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _resolve_classes on line 1692 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _resolve_classes => None
* Call to instance_init on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033c9208>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1045 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __enter__ => None
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to cross_validation_lock on line 1061 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* cross_validation_lock => None
* __exit__ => None
* instance_init => None
* instance_init => None
* instance_init => None
* setup_instance => None
* setup_instance => None
* __new__ => <IPython.core.formatters.JavascriptFormatter object at 0x103437a58>
* Call to __init__ on line 38 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* __get__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* _validate => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => parent
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* Call to __init__ on line 986 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1032e6a20>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* __init__ => None
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* _validate => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => config
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.JavascriptFormatter object at 0x103437a58>>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <bound method observe_compat.<locals>.compatible_observer of <IPython.core.formatters.JavascriptFormatter object at 0x103437a58>>
* Call to compatible_observer on line 803 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _config_changed on line 170 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to traits on line 1405 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to getmembers on line 224 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __get__ on line 909 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b6b6d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023897b8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Bool object at 0x102389668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Unicode object at 0x102395208>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Instance object at 0x101b72d68>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.ObjectName object at 0x102915ba8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x1023896d8>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __get__ => <traitlets.traitlets.Dict object at 0x102389748>
* getmembers => [('__call__', <function BaseFormatter.__call__ at 0x10238a9d8>), ('__class__', <class 'traitlets.traitlets.MetaHasTraits'>), ('__contains__', <function BaseFormatter.__contains__ at 0x10238aa60>), ('__delattr__', <slot wrapper '__delattr__' of 'object' objects>), ('__dict__', mappingproxy({'__module__': 'IPython.core.formatters', '__doc__': 'A Javascript formatter.\n\n    To define the callables that compute the Javascript representation of\n    your objects, define a :meth:`_repr_javascript_` method or use the\n    :meth:`for_type` or :meth:`for_type_by_name` methods to register functions\n    that handle this.\n\n    The return value of this formatter should be valid Javascript code and\n    should *not* be enclosed in ```<script>``` tags.\n    ', 'format_type': <traitlets.traitlets.Unicode object at 0x102395208>, 'print_method': <traitlets.traitlets.ObjectName object at 0x102915ba8>, '_trait_default_generators': {}})), ('__dir__', <method '__dir__' of 'object' objects>), ('__doc__', 'A Javascript formatter.\n\n    To define the callables that compute the Javascript representation of\n    your objects, define a :meth:`_repr_javascript_` method or use the\n    :meth:`for_type` or :meth:`for_type_by_name` methods to register functions\n    that handle this.\n\n    The return value of this formatter should be valid Javascript code and\n    should *not* be enclosed in ```<script>``` tags.\n    '), ('__eq__', <slot wrapper '__eq__' of 'object' objects>), ('__format__', <method '__format__' of 'object' objects>), ('__ge__', <slot wrapper '__ge__' of 'object' objects>), ('__getattribute__', <slot wrapper '__getattribute__' of 'object' objects>), ('__getstate__', <function HasTraits.__getstate__ at 0x101b4b620>), ('__gt__', <slot wrapper '__gt__' of 'object' objects>), ('__hash__', <slot wrapper '__hash__' of 'object' objects>), ('__init__', <function Configurable.__init__ at 0x101bd9d90>), ('__init_subclass__', <built-in method __init_subclass__ of MetaHasTraits object at 0x7f8804d4bfe8>), ('__le__', <slot wrapper '__le__' of 'object' objects>), ('__lt__', <slot wrapper '__lt__' of 'object' objects>), ('__module__', 'IPython.core.formatters'), ('__ne__', <slot wrapper '__ne__' of 'object' objects>), ('__new__', <function HasDescriptors.__new__ at 0x101b4b2f0>), ('__reduce__', <method '__reduce__' of 'object' objects>), ('__reduce_ex__', <method '__reduce_ex__' of 'object' objects>), ('__repr__', <slot wrapper '__repr__' of 'object' objects>), ('__setattr__', <slot wrapper '__setattr__' of 'object' objects>), ('__setstate__', <function HasTraits.__setstate__ at 0x101b4b6a8>), ('__sizeof__', <method '__sizeof__' of 'object' objects>), ('__str__', <slot wrapper '__str__' of 'object' objects>), ('__subclasshook__', <built-in method __subclasshook__ of MetaHasTraits object at 0x7f8804d4bfe8>), ('__weakref__', <attribute '__weakref__' of 'HasDescriptors' objects>), ('_add_notifiers', <function HasTraits._add_notifiers at 0x101b4ba60>), ('_check_return', <function BaseFormatter._check_return at 0x10238aae8>), ('_config_changed', <traitlets.traitlets.ObserveHandler object at 0x101bd0d30>), ('_find_my_config', <function Configurable._find_my_config at 0x101bd9ea0>), ('_in_deferred_types', <function BaseFormatter._in_deferred_types at 0x10238ae18>), ('_load_config', <function Configurable._load_config at 0x101bd9f28>), ('_notify_trait', <function HasTraits._notify_trait at 0x101b4b950>), ('_register_validator', <function HasTraits._register_validator at 0x101b4bd90>), ('_remove_notifiers', <function HasTraits._remove_notifiers at 0x101b4bae8>), ('_return_type', (<class 'str'>,)), ('_trait_default_generators', {}), ('add_traits', <function HasTraits.add_traits at 0x101b4be18>), ('class_config_rst_doc', <bound method Configurable.class_config_rst_doc of <class 'IPython.core.formatters.JavascriptFormatter'>>), ('class_config_section', <bound method Configurable.class_config_section of <class 'IPython.core.formatters.JavascriptFormatter'>>), ('class_get_help', <bound method Configurable.class_get_help of <class 'IPython.core.formatters.JavascriptFormatter'>>), ('class_get_trait_help', <bound method Configurable.class_get_trait_help of <class 'IPython.core.formatters.JavascriptFormatter'>>), ('class_own_trait_events', <bound method HasTraits.class_own_trait_events of <class 'IPython.core.formatters.JavascriptFormatter'>>), ('class_own_traits', <bound method HasTraits.class_own_traits of <class 'IPython.core.formatters.JavascriptFormatter'>>), ('class_print_help', <bound method Configurable.class_print_help of <class 'IPython.core.formatters.JavascriptFormatter'>>), ('class_trait_names', <bound method HasTraits.class_trait_names of <class 'IPython.core.formatters.JavascriptFormatter'>>), ('class_traits', <bound method HasTraits.class_traits of <class 'IPython.core.formatters.JavascriptFormatter'>>), ('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('cross_validation_lock', <property object at 0x101b4a458>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('for_type', <function BaseFormatter.for_type at 0x10238ac80>), ('for_type_by_name', <function BaseFormatter.for_type_by_name at 0x10238ad08>), ('format_type', <traitlets.traitlets.Unicode object at 0x102395208>), ('has_trait', <function HasTraits.has_trait at 0x101b51158>), ('hold_trait_notifications', <function HasTraits.hold_trait_notifications at 0x101b4b8c8>), ('lookup', <function BaseFormatter.lookup at 0x10238ab70>), ('lookup_by_type', <function BaseFormatter.lookup_by_type at 0x10238abf8>), ('notify_change', <function HasTraits.notify_change at 0x101b4b9d8>), ('observe', <function HasTraits.observe at 0x101b4bbf8>), ('on_trait_change', <function HasTraits.on_trait_change at 0x101b4bb70>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('pop', <function BaseFormatter.pop at 0x10238ad90>), ('print_method', <traitlets.traitlets.ObjectName object at 0x102915ba8>), ('section_names', <bound method Configurable.section_names of <class 'IPython.core.formatters.JavascriptFormatter'>>), ('set_trait', <function HasTraits.set_trait at 0x101b4bea0>), ('setup_instance', <function HasTraits.setup_instance at 0x101b4b488>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('trait_events', <bound method HasTraits.trait_events of <class 'IPython.core.formatters.JavascriptFormatter'>>), ('trait_metadata', <function HasTraits.trait_metadata at 0x101b512f0>), ('trait_names', <function HasTraits.trait_names at 0x101b511e0>), ('traits', <function HasTraits.traits at 0x101b51268>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>), ('unobserve', <function HasTraits.unobserve at 0x101b4bc80>), ('unobserve_all', <function HasTraits.unobserve_all at 0x101b4bd08>), ('update_config', <function Configurable.update_config at 0x101bde158>)]
* Call to <listcomp> on line 1419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* <listcomp> => [('config', <traitlets.traitlets.Instance object at 0x101b6b6d8>), ('deferred_printers', <traitlets.traitlets.Dict object at 0x1023897b8>), ('enabled', <traitlets.traitlets.Bool object at 0x102389668>), ('format_type', <traitlets.traitlets.Unicode object at 0x102395208>), ('parent', <traitlets.traitlets.Instance object at 0x101b72d68>), ('print_method', <traitlets.traitlets.ObjectName object at 0x102915ba8>), ('singleton_printers', <traitlets.traitlets.Dict object at 0x1023896d8>), ('type_printers', <traitlets.traitlets.Dict object at 0x102389748>)]
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => False
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* Call to __call__ on line 216 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __call__ => True
* traits => {'deferred_printers': <traitlets.traitlets.Dict object at 0x1023897b8>, 'enabled': <traitlets.traitlets.Bool object at 0x102389668>, 'singleton_printers': <traitlets.traitlets.Dict object at 0x1023896d8>, 'type_printers': <traitlets.traitlets.Dict object at 0x102389748>}
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'JavascriptFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'JavascriptFormatter']
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => {'IPKernelApp': {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}}
* Call to _load_config on line 131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* __get__ => <IPython.core.formatters.DisplayFormatter object at 0x103215e48>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* __get__ => <ipykernel.ipkernel.IPythonKernel object at 0x1031a3978>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* __get__ => <ipykernel.kernelapp.IPKernelApp object at 0x101668f28>
* Call to _find_my_config on line 106 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => None
* __get__ => None
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* section_names => ['Configurable', 'LoggingConfigurable', 'ConnectionFileMixin', 'InteractiveShellApp', 'SingletonConfigurable', 'Application', 'BaseIPythonApplication', 'IPKernelApp']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => True
* _has_section => True
* Call to __getitem__ on line 252 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __getitem__ => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to merge on line 182 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* merge => None
* _find_my_config => {'connection_file': '/Users/gaufung/Library/Jupyter/runtime/kernel-9ebdbb24-8796-4d9f-a613-959d4d7bac3d.json'}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'Kernel', 'IPythonKernel']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* section_names => ['Configurable', 'LoggingConfigurable', 'SingletonConfigurable', 'InteractiveShell', 'ZMQInteractiveShell']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'DisplayFormatter']
* section_names => ['Configurable', 'DisplayFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to __init__ on line 161 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _ensure_subconfig on line 165 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _ensure_subconfig => None
* __init__ => None
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'JavascriptFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'JavascriptFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to section_names on line 99 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* Call to <listcomp> on line 102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/configurable.py
* <listcomp> => ['Configurable', 'BaseFormatter', 'JavascriptFormatter']
* section_names => ['Configurable', 'BaseFormatter', 'JavascriptFormatter']
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* Call to _has_section on line 231 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* Call to _is_section_key on line 150 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* _is_section_key => True
* Call to __contains__ on line 218 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/config/loader.py
* __contains__ => False
* _has_section => False
* _find_my_config => {}
* Call to helper on line 157 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to __init__ on line 60 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* __init__ => None
* helper => <contextlib._GeneratorContextManager object at 0x1033c2a20>
* Call to __enter__ on line 80 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __enter__ => None
* Call to __exit__ on line 86 of /Users/gaufung/anaconda/lib/python3.6/contextlib.py
* Call to hold_trait_notifications on line 1102 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* hold_trait_notifications => None
* __exit__ => None
* _load_config => None
* _config_changed => None
* compatible_observer => None
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* __init__ => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => application/javascript
* __get__ => application/javascript
* _formatters_default => {'text/plain': <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>, 'text/html': <IPython.core.formatters.HTMLFormatter object at 0x103487278>, 'text/markdown': <IPython.core.formatters.MarkdownFormatter object at 0x1032e65c0>, 'image/svg+xml': <IPython.core.formatters.SVGFormatter object at 0x1032e6eb8>, 'image/png': <IPython.core.formatters.PNGFormatter object at 0x10337f668>, 'application/pdf': <IPython.core.formatters.PDFFormatter object at 0x10338a2e8>, 'image/jpeg': <IPython.core.formatters.JPEGFormatter object at 0x1034419b0>, 'text/latex': <IPython.core.formatters.LatexFormatter object at 0x103441c50>, 'application/json': <IPython.core.formatters.JSONFormatter object at 0x1033b51d0>, 'application/javascript': <IPython.core.formatters.JavascriptFormatter object at 0x103437a58>}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {'text/plain': <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>, 'text/html': <IPython.core.formatters.HTMLFormatter object at 0x103487278>, 'text/markdown': <IPython.core.formatters.MarkdownFormatter object at 0x1032e65c0>, 'image/svg+xml': <IPython.core.formatters.SVGFormatter object at 0x1032e6eb8>, 'image/png': <IPython.core.formatters.PNGFormatter object at 0x10337f668>, 'application/pdf': <IPython.core.formatters.PDFFormatter object at 0x10338a2e8>, 'image/jpeg': <IPython.core.formatters.JPEGFormatter object at 0x1034419b0>, 'text/latex': <IPython.core.formatters.LatexFormatter object at 0x103441c50>, 'application/json': <IPython.core.formatters.JSONFormatter object at 0x1033b51d0>, 'application/javascript': <IPython.core.formatters.JavascriptFormatter object at 0x103437a58>}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {'text/plain': <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>, 'text/html': <IPython.core.formatters.HTMLFormatter object at 0x103487278>, 'text/markdown': <IPython.core.formatters.MarkdownFormatter object at 0x1032e65c0>, 'image/svg+xml': <IPython.core.formatters.SVGFormatter object at 0x1032e6eb8>, 'image/png': <IPython.core.formatters.PNGFormatter object at 0x10337f668>, 'application/pdf': <IPython.core.formatters.PDFFormatter object at 0x10338a2e8>, 'image/jpeg': <IPython.core.formatters.JPEGFormatter object at 0x1034419b0>, 'text/latex': <IPython.core.formatters.LatexFormatter object at 0x103441c50>, 'application/json': <IPython.core.formatters.JSONFormatter object at 0x1033b51d0>, 'application/javascript': <IPython.core.formatters.JavascriptFormatter object at 0x103437a58>}
* validate => {'text/plain': <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>, 'text/html': <IPython.core.formatters.HTMLFormatter object at 0x103487278>, 'text/markdown': <IPython.core.formatters.MarkdownFormatter object at 0x1032e65c0>, 'image/svg+xml': <IPython.core.formatters.SVGFormatter object at 0x1032e6eb8>, 'image/png': <IPython.core.formatters.PNGFormatter object at 0x10337f668>, 'application/pdf': <IPython.core.formatters.PDFFormatter object at 0x10338a2e8>, 'image/jpeg': <IPython.core.formatters.JPEGFormatter object at 0x1034419b0>, 'text/latex': <IPython.core.formatters.LatexFormatter object at 0x103441c50>, 'application/json': <IPython.core.formatters.JSONFormatter object at 0x1033b51d0>, 'application/javascript': <IPython.core.formatters.JavascriptFormatter object at 0x103437a58>}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {'text/plain': <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>, 'text/html': <IPython.core.formatters.HTMLFormatter object at 0x103487278>, 'text/markdown': <IPython.core.formatters.MarkdownFormatter object at 0x1032e65c0>, 'image/svg+xml': <IPython.core.formatters.SVGFormatter object at 0x1032e6eb8>, 'image/png': <IPython.core.formatters.PNGFormatter object at 0x10337f668>, 'application/pdf': <IPython.core.formatters.PDFFormatter object at 0x10338a2e8>, 'image/jpeg': <IPython.core.formatters.JPEGFormatter object at 0x1034419b0>, 'text/latex': <IPython.core.formatters.LatexFormatter object at 0x103441c50>, 'application/json': <IPython.core.formatters.JSONFormatter object at 0x1033b51d0>, 'application/javascript': <IPython.core.formatters.JavascriptFormatter object at 0x103437a58>}
* _validate => {'text/plain': <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>, 'text/html': <IPython.core.formatters.HTMLFormatter object at 0x103487278>, 'text/markdown': <IPython.core.formatters.MarkdownFormatter object at 0x1032e65c0>, 'image/svg+xml': <IPython.core.formatters.SVGFormatter object at 0x1032e6eb8>, 'image/png': <IPython.core.formatters.PNGFormatter object at 0x10337f668>, 'application/pdf': <IPython.core.formatters.PDFFormatter object at 0x10338a2e8>, 'image/jpeg': <IPython.core.formatters.JPEGFormatter object at 0x1034419b0>, 'text/latex': <IPython.core.formatters.LatexFormatter object at 0x103441c50>, 'application/json': <IPython.core.formatters.JSONFormatter object at 0x1033b51d0>, 'application/javascript': <IPython.core.formatters.JavascriptFormatter object at 0x103437a58>}
* get => {'text/plain': <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>, 'text/html': <IPython.core.formatters.HTMLFormatter object at 0x103487278>, 'text/markdown': <IPython.core.formatters.MarkdownFormatter object at 0x1032e65c0>, 'image/svg+xml': <IPython.core.formatters.SVGFormatter object at 0x1032e6eb8>, 'image/png': <IPython.core.formatters.PNGFormatter object at 0x10337f668>, 'application/pdf': <IPython.core.formatters.PDFFormatter object at 0x10338a2e8>, 'image/jpeg': <IPython.core.formatters.JPEGFormatter object at 0x1034419b0>, 'text/latex': <IPython.core.formatters.LatexFormatter object at 0x103441c50>, 'application/json': <IPython.core.formatters.JSONFormatter object at 0x1033b51d0>, 'application/javascript': <IPython.core.formatters.JavascriptFormatter object at 0x103437a58>}
* __get__ => {'text/plain': <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>, 'text/html': <IPython.core.formatters.HTMLFormatter object at 0x103487278>, 'text/markdown': <IPython.core.formatters.MarkdownFormatter object at 0x1032e65c0>, 'image/svg+xml': <IPython.core.formatters.SVGFormatter object at 0x1032e6eb8>, 'image/png': <IPython.core.formatters.PNGFormatter object at 0x10337f668>, 'application/pdf': <IPython.core.formatters.PDFFormatter object at 0x10338a2e8>, 'image/jpeg': <IPython.core.formatters.JPEGFormatter object at 0x1034419b0>, 'text/latex': <IPython.core.formatters.LatexFormatter object at 0x103441c50>, 'application/json': <IPython.core.formatters.JSONFormatter object at 0x1033b51d0>, 'application/javascript': <IPython.core.formatters.JavascriptFormatter object at 0x103437a58>}
* Call to __call__ on line 1 of <decorator-gen-10>
* Call to catch_format_error on line 186 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __call__ on line 655 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => True
* __get__ => True
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => False
* __get__ => False
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 79
* __get__ => 79
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 

* __get__ => 

* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 1000
* __get__ => 1000
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method PlainTextFormatter._singleton_printers_default of <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>>
* Call to _singleton_printers_default on line 639 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _singleton_printers_default => {4315867048: <function _repr_pprint at 0x1020e2598>, 4315767632: <function _repr_pprint at 0x1020e2598>, 4315767600: <function _repr_pprint at 0x1020e2598>, 4315878912: <function _repr_pprint at 0x1020e2598>, 4315868224: <function _repr_pprint at 0x1020e2598>}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {4315867048: <function _repr_pprint at 0x1020e2598>, 4315767632: <function _repr_pprint at 0x1020e2598>, 4315767600: <function _repr_pprint at 0x1020e2598>, 4315878912: <function _repr_pprint at 0x1020e2598>, 4315868224: <function _repr_pprint at 0x1020e2598>}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {4315867048: <function _repr_pprint at 0x1020e2598>, 4315767632: <function _repr_pprint at 0x1020e2598>, 4315767600: <function _repr_pprint at 0x1020e2598>, 4315878912: <function _repr_pprint at 0x1020e2598>, 4315868224: <function _repr_pprint at 0x1020e2598>}
* validate => {4315867048: <function _repr_pprint at 0x1020e2598>, 4315767632: <function _repr_pprint at 0x1020e2598>, 4315767600: <function _repr_pprint at 0x1020e2598>, 4315878912: <function _repr_pprint at 0x1020e2598>, 4315868224: <function _repr_pprint at 0x1020e2598>}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {4315867048: <function _repr_pprint at 0x1020e2598>, 4315767632: <function _repr_pprint at 0x1020e2598>, 4315767600: <function _repr_pprint at 0x1020e2598>, 4315878912: <function _repr_pprint at 0x1020e2598>, 4315868224: <function _repr_pprint at 0x1020e2598>}
* _validate => {4315867048: <function _repr_pprint at 0x1020e2598>, 4315767632: <function _repr_pprint at 0x1020e2598>, 4315767600: <function _repr_pprint at 0x1020e2598>, 4315878912: <function _repr_pprint at 0x1020e2598>, 4315868224: <function _repr_pprint at 0x1020e2598>}
* get => {4315867048: <function _repr_pprint at 0x1020e2598>, 4315767632: <function _repr_pprint at 0x1020e2598>, 4315767600: <function _repr_pprint at 0x1020e2598>, 4315878912: <function _repr_pprint at 0x1020e2598>, 4315868224: <function _repr_pprint at 0x1020e2598>}
* __get__ => {4315867048: <function _repr_pprint at 0x1020e2598>, 4315767632: <function _repr_pprint at 0x1020e2598>, 4315767600: <function _repr_pprint at 0x1020e2598>, 4315878912: <function _repr_pprint at 0x1020e2598>, 4315868224: <function _repr_pprint at 0x1020e2598>}
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method PlainTextFormatter._type_printers_default of <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>>
* Call to _type_printers_default on line 643 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _type_printers_default => {<class 'int'>: <function _repr_pprint at 0x1020e2598>, <class 'float'>: <function PlainTextFormatter._type_printers_default.<locals>.<lambda> at 0x1033d5400>, <class 'str'>: <function _repr_pprint at 0x1020e2598>, <class 'tuple'>: <function _seq_pprinter_factory.<locals>.inner at 0x1020e2730>, <class 'list'>: <function _seq_pprinter_factory.<locals>.inner at 0x1020e27b8>, <class 'dict'>: <function _dict_pprinter_factory.<locals>.inner at 0x1020e2840>, <class 'set'>: <function _set_pprinter_factory.<locals>.inner at 0x1020e28c8>, <class 'frozenset'>: <function _set_pprinter_factory.<locals>.inner at 0x1020e2950>, <class 'super'>: <function _super_pprint at 0x1020e2400>, <class '_sre.SRE_Pattern'>: <function _re_pattern_pprint at 0x1020e2488>, <class 'type'>: <function _type_pprint at 0x1020e2510>, <class 'function'>: <function _function_pprint at 0x1020e2620>, <class 'builtin_function_or_method'>: <function _function_pprint at 0x1020e2620>, <class 'method'>: <function _repr_pprint at 0x1020e2598>, <class 'datetime.datetime'>: <function _repr_pprint at 0x1020e2598>, <class 'datetime.timedelta'>: <function _repr_pprint at 0x1020e2598>, <class 'BaseException'>: <function _exception_pprint at 0x1020e26a8>, <class 'mappingproxy'>: <function _dict_pprinter_factory.<locals>.inner at 0x1020e29d8>, <class 'slice'>: <function _repr_pprint at 0x1020e2598>, <class 'range'>: <function _repr_pprint at 0x1020e2598>, <class 'bytes'>: <function _repr_pprint at 0x1020e2598>}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {<class 'int'>: <function _repr_pprint at 0x1020e2598>, <class 'float'>: <function PlainTextFormatter._type_printers_default.<locals>.<lambda> at 0x1033d5400>, <class 'str'>: <function _repr_pprint at 0x1020e2598>, <class 'tuple'>: <function _seq_pprinter_factory.<locals>.inner at 0x1020e2730>, <class 'list'>: <function _seq_pprinter_factory.<locals>.inner at 0x1020e27b8>, <class 'dict'>: <function _dict_pprinter_factory.<locals>.inner at 0x1020e2840>, <class 'set'>: <function _set_pprinter_factory.<locals>.inner at 0x1020e28c8>, <class 'frozenset'>: <function _set_pprinter_factory.<locals>.inner at 0x1020e2950>, <class 'super'>: <function _super_pprint at 0x1020e2400>, <class '_sre.SRE_Pattern'>: <function _re_pattern_pprint at 0x1020e2488>, <class 'type'>: <function _type_pprint at 0x1020e2510>, <class 'function'>: <function _function_pprint at 0x1020e2620>, <class 'builtin_function_or_method'>: <function _function_pprint at 0x1020e2620>, <class 'method'>: <function _repr_pprint at 0x1020e2598>, <class 'datetime.datetime'>: <function _repr_pprint at 0x1020e2598>, <class 'datetime.timedelta'>: <function _repr_pprint at 0x1020e2598>, <class 'BaseException'>: <function _exception_pprint at 0x1020e26a8>, <class 'mappingproxy'>: <function _dict_pprinter_factory.<locals>.inner at 0x1020e29d8>, <class 'slice'>: <function _repr_pprint at 0x1020e2598>, <class 'range'>: <function _repr_pprint at 0x1020e2598>, <class 'bytes'>: <function _repr_pprint at 0x1020e2598>}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {<class 'int'>: <function _repr_pprint at 0x1020e2598>, <class 'float'>: <function PlainTextFormatter._type_printers_default.<locals>.<lambda> at 0x1033d5400>, <class 'str'>: <function _repr_pprint at 0x1020e2598>, <class 'tuple'>: <function _seq_pprinter_factory.<locals>.inner at 0x1020e2730>, <class 'list'>: <function _seq_pprinter_factory.<locals>.inner at 0x1020e27b8>, <class 'dict'>: <function _dict_pprinter_factory.<locals>.inner at 0x1020e2840>, <class 'set'>: <function _set_pprinter_factory.<locals>.inner at 0x1020e28c8>, <class 'frozenset'>: <function _set_pprinter_factory.<locals>.inner at 0x1020e2950>, <class 'super'>: <function _super_pprint at 0x1020e2400>, <class '_sre.SRE_Pattern'>: <function _re_pattern_pprint at 0x1020e2488>, <class 'type'>: <function _type_pprint at 0x1020e2510>, <class 'function'>: <function _function_pprint at 0x1020e2620>, <class 'builtin_function_or_method'>: <function _function_pprint at 0x1020e2620>, <class 'method'>: <function _repr_pprint at 0x1020e2598>, <class 'datetime.datetime'>: <function _repr_pprint at 0x1020e2598>, <class 'datetime.timedelta'>: <function _repr_pprint at 0x1020e2598>, <class 'BaseException'>: <function _exception_pprint at 0x1020e26a8>, <class 'mappingproxy'>: <function _dict_pprinter_factory.<locals>.inner at 0x1020e29d8>, <class 'slice'>: <function _repr_pprint at 0x1020e2598>, <class 'range'>: <function _repr_pprint at 0x1020e2598>, <class 'bytes'>: <function _repr_pprint at 0x1020e2598>}
* validate => {<class 'int'>: <function _repr_pprint at 0x1020e2598>, <class 'float'>: <function PlainTextFormatter._type_printers_default.<locals>.<lambda> at 0x1033d5400>, <class 'str'>: <function _repr_pprint at 0x1020e2598>, <class 'tuple'>: <function _seq_pprinter_factory.<locals>.inner at 0x1020e2730>, <class 'list'>: <function _seq_pprinter_factory.<locals>.inner at 0x1020e27b8>, <class 'dict'>: <function _dict_pprinter_factory.<locals>.inner at 0x1020e2840>, <class 'set'>: <function _set_pprinter_factory.<locals>.inner at 0x1020e28c8>, <class 'frozenset'>: <function _set_pprinter_factory.<locals>.inner at 0x1020e2950>, <class 'super'>: <function _super_pprint at 0x1020e2400>, <class '_sre.SRE_Pattern'>: <function _re_pattern_pprint at 0x1020e2488>, <class 'type'>: <function _type_pprint at 0x1020e2510>, <class 'function'>: <function _function_pprint at 0x1020e2620>, <class 'builtin_function_or_method'>: <function _function_pprint at 0x1020e2620>, <class 'method'>: <function _repr_pprint at 0x1020e2598>, <class 'datetime.datetime'>: <function _repr_pprint at 0x1020e2598>, <class 'datetime.timedelta'>: <function _repr_pprint at 0x1020e2598>, <class 'BaseException'>: <function _exception_pprint at 0x1020e26a8>, <class 'mappingproxy'>: <function _dict_pprinter_factory.<locals>.inner at 0x1020e29d8>, <class 'slice'>: <function _repr_pprint at 0x1020e2598>, <class 'range'>: <function _repr_pprint at 0x1020e2598>, <class 'bytes'>: <function _repr_pprint at 0x1020e2598>}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {<class 'int'>: <function _repr_pprint at 0x1020e2598>, <class 'float'>: <function PlainTextFormatter._type_printers_default.<locals>.<lambda> at 0x1033d5400>, <class 'str'>: <function _repr_pprint at 0x1020e2598>, <class 'tuple'>: <function _seq_pprinter_factory.<locals>.inner at 0x1020e2730>, <class 'list'>: <function _seq_pprinter_factory.<locals>.inner at 0x1020e27b8>, <class 'dict'>: <function _dict_pprinter_factory.<locals>.inner at 0x1020e2840>, <class 'set'>: <function _set_pprinter_factory.<locals>.inner at 0x1020e28c8>, <class 'frozenset'>: <function _set_pprinter_factory.<locals>.inner at 0x1020e2950>, <class 'super'>: <function _super_pprint at 0x1020e2400>, <class '_sre.SRE_Pattern'>: <function _re_pattern_pprint at 0x1020e2488>, <class 'type'>: <function _type_pprint at 0x1020e2510>, <class 'function'>: <function _function_pprint at 0x1020e2620>, <class 'builtin_function_or_method'>: <function _function_pprint at 0x1020e2620>, <class 'method'>: <function _repr_pprint at 0x1020e2598>, <class 'datetime.datetime'>: <function _repr_pprint at 0x1020e2598>, <class 'datetime.timedelta'>: <function _repr_pprint at 0x1020e2598>, <class 'BaseException'>: <function _exception_pprint at 0x1020e26a8>, <class 'mappingproxy'>: <function _dict_pprinter_factory.<locals>.inner at 0x1020e29d8>, <class 'slice'>: <function _repr_pprint at 0x1020e2598>, <class 'range'>: <function _repr_pprint at 0x1020e2598>, <class 'bytes'>: <function _repr_pprint at 0x1020e2598>}
* _validate => {<class 'int'>: <function _repr_pprint at 0x1020e2598>, <class 'float'>: <function PlainTextFormatter._type_printers_default.<locals>.<lambda> at 0x1033d5400>, <class 'str'>: <function _repr_pprint at 0x1020e2598>, <class 'tuple'>: <function _seq_pprinter_factory.<locals>.inner at 0x1020e2730>, <class 'list'>: <function _seq_pprinter_factory.<locals>.inner at 0x1020e27b8>, <class 'dict'>: <function _dict_pprinter_factory.<locals>.inner at 0x1020e2840>, <class 'set'>: <function _set_pprinter_factory.<locals>.inner at 0x1020e28c8>, <class 'frozenset'>: <function _set_pprinter_factory.<locals>.inner at 0x1020e2950>, <class 'super'>: <function _super_pprint at 0x1020e2400>, <class '_sre.SRE_Pattern'>: <function _re_pattern_pprint at 0x1020e2488>, <class 'type'>: <function _type_pprint at 0x1020e2510>, <class 'function'>: <function _function_pprint at 0x1020e2620>, <class 'builtin_function_or_method'>: <function _function_pprint at 0x1020e2620>, <class 'method'>: <function _repr_pprint at 0x1020e2598>, <class 'datetime.datetime'>: <function _repr_pprint at 0x1020e2598>, <class 'datetime.timedelta'>: <function _repr_pprint at 0x1020e2598>, <class 'BaseException'>: <function _exception_pprint at 0x1020e26a8>, <class 'mappingproxy'>: <function _dict_pprinter_factory.<locals>.inner at 0x1020e29d8>, <class 'slice'>: <function _repr_pprint at 0x1020e2598>, <class 'range'>: <function _repr_pprint at 0x1020e2598>, <class 'bytes'>: <function _repr_pprint at 0x1020e2598>}
* get => {<class 'int'>: <function _repr_pprint at 0x1020e2598>, <class 'float'>: <function PlainTextFormatter._type_printers_default.<locals>.<lambda> at 0x1033d5400>, <class 'str'>: <function _repr_pprint at 0x1020e2598>, <class 'tuple'>: <function _seq_pprinter_factory.<locals>.inner at 0x1020e2730>, <class 'list'>: <function _seq_pprinter_factory.<locals>.inner at 0x1020e27b8>, <class 'dict'>: <function _dict_pprinter_factory.<locals>.inner at 0x1020e2840>, <class 'set'>: <function _set_pprinter_factory.<locals>.inner at 0x1020e28c8>, <class 'frozenset'>: <function _set_pprinter_factory.<locals>.inner at 0x1020e2950>, <class 'super'>: <function _super_pprint at 0x1020e2400>, <class '_sre.SRE_Pattern'>: <function _re_pattern_pprint at 0x1020e2488>, <class 'type'>: <function _type_pprint at 0x1020e2510>, <class 'function'>: <function _function_pprint at 0x1020e2620>, <class 'builtin_function_or_method'>: <function _function_pprint at 0x1020e2620>, <class 'method'>: <function _repr_pprint at 0x1020e2598>, <class 'datetime.datetime'>: <function _repr_pprint at 0x1020e2598>, <class 'datetime.timedelta'>: <function _repr_pprint at 0x1020e2598>, <class 'BaseException'>: <function _exception_pprint at 0x1020e26a8>, <class 'mappingproxy'>: <function _dict_pprinter_factory.<locals>.inner at 0x1020e29d8>, <class 'slice'>: <function _repr_pprint at 0x1020e2598>, <class 'range'>: <function _repr_pprint at 0x1020e2598>, <class 'bytes'>: <function _repr_pprint at 0x1020e2598>}
* __get__ => {<class 'int'>: <function _repr_pprint at 0x1020e2598>, <class 'float'>: <function PlainTextFormatter._type_printers_default.<locals>.<lambda> at 0x1033d5400>, <class 'str'>: <function _repr_pprint at 0x1020e2598>, <class 'tuple'>: <function _seq_pprinter_factory.<locals>.inner at 0x1020e2730>, <class 'list'>: <function _seq_pprinter_factory.<locals>.inner at 0x1020e27b8>, <class 'dict'>: <function _dict_pprinter_factory.<locals>.inner at 0x1020e2840>, <class 'set'>: <function _set_pprinter_factory.<locals>.inner at 0x1020e28c8>, <class 'frozenset'>: <function _set_pprinter_factory.<locals>.inner at 0x1020e2950>, <class 'super'>: <function _super_pprint at 0x1020e2400>, <class '_sre.SRE_Pattern'>: <function _re_pattern_pprint at 0x1020e2488>, <class 'type'>: <function _type_pprint at 0x1020e2510>, <class 'function'>: <function _function_pprint at 0x1020e2620>, <class 'builtin_function_or_method'>: <function _function_pprint at 0x1020e2620>, <class 'method'>: <function _repr_pprint at 0x1020e2598>, <class 'datetime.datetime'>: <function _repr_pprint at 0x1020e2598>, <class 'datetime.timedelta'>: <function _repr_pprint at 0x1020e2598>, <class 'BaseException'>: <function _exception_pprint at 0x1020e26a8>, <class 'mappingproxy'>: <function _dict_pprinter_factory.<locals>.inner at 0x1020e29d8>, <class 'slice'>: <function _repr_pprint at 0x1020e2598>, <class 'range'>: <function _repr_pprint at 0x1020e2598>, <class 'bytes'>: <function _repr_pprint at 0x1020e2598>}
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method PlainTextFormatter._deferred_printers_default of <IPython.core.formatters.PlainTextFormatter object at 0x10348d898>>
* Call to _deferred_printers_default on line 649 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _deferred_printers_default => {('collections', 'defaultdict'): <function _defaultdict_pprint at 0x1020e2b70>, ('collections', 'OrderedDict'): <function _ordereddict_pprint at 0x1020e2bf8>, ('collections', 'deque'): <function _deque_pprint at 0x1020e2c80>, ('collections', 'Counter'): <function _counter_pprint at 0x1020e2d08>}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {('collections', 'defaultdict'): <function _defaultdict_pprint at 0x1020e2b70>, ('collections', 'OrderedDict'): <function _ordereddict_pprint at 0x1020e2bf8>, ('collections', 'deque'): <function _deque_pprint at 0x1020e2c80>, ('collections', 'Counter'): <function _counter_pprint at 0x1020e2d08>}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {('collections', 'defaultdict'): <function _defaultdict_pprint at 0x1020e2b70>, ('collections', 'OrderedDict'): <function _ordereddict_pprint at 0x1020e2bf8>, ('collections', 'deque'): <function _deque_pprint at 0x1020e2c80>, ('collections', 'Counter'): <function _counter_pprint at 0x1020e2d08>}
* validate => {('collections', 'defaultdict'): <function _defaultdict_pprint at 0x1020e2b70>, ('collections', 'OrderedDict'): <function _ordereddict_pprint at 0x1020e2bf8>, ('collections', 'deque'): <function _deque_pprint at 0x1020e2c80>, ('collections', 'Counter'): <function _counter_pprint at 0x1020e2d08>}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {('collections', 'defaultdict'): <function _defaultdict_pprint at 0x1020e2b70>, ('collections', 'OrderedDict'): <function _ordereddict_pprint at 0x1020e2bf8>, ('collections', 'deque'): <function _deque_pprint at 0x1020e2c80>, ('collections', 'Counter'): <function _counter_pprint at 0x1020e2d08>}
* _validate => {('collections', 'defaultdict'): <function _defaultdict_pprint at 0x1020e2b70>, ('collections', 'OrderedDict'): <function _ordereddict_pprint at 0x1020e2bf8>, ('collections', 'deque'): <function _deque_pprint at 0x1020e2c80>, ('collections', 'Counter'): <function _counter_pprint at 0x1020e2d08>}
* get => {('collections', 'defaultdict'): <function _defaultdict_pprint at 0x1020e2b70>, ('collections', 'OrderedDict'): <function _ordereddict_pprint at 0x1020e2bf8>, ('collections', 'deque'): <function _deque_pprint at 0x1020e2c80>, ('collections', 'Counter'): <function _counter_pprint at 0x1020e2d08>}
* __get__ => {('collections', 'defaultdict'): <function _defaultdict_pprint at 0x1020e2b70>, ('collections', 'OrderedDict'): <function _ordereddict_pprint at 0x1020e2bf8>, ('collections', 'deque'): <function _deque_pprint at 0x1020e2c80>, ('collections', 'Counter'): <function _counter_pprint at 0x1020e2d08>}
* Call to __init__ on line 330 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* Call to __init__ on line 171 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* Call to __init__ on line 453 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* __init__ => None
* Call to __init__ on line 461 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* Call to enq on line 466 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* enq => None
* __init__ => None
* __init__ => None
* __init__ => None
* Call to pretty on line 347 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* Call to begin_group on line 244 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* Call to __init__ on line 453 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* __init__ => None
* Call to enq on line 466 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* enq => None
* begin_group => None
* Call to _safe_getattr on line 101 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* _safe_getattr => <class 'str'>
* Call to _get_mro on line 296 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* _get_mro => (<class 'str'>, <class 'object'>)
* Call to _repr_pprint on line 698 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* Call to text on line 199 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* text => None
* _repr_pprint => None
* Call to end_group on line 279 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* Call to remove on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* remove => None
* end_group => None
* pretty => None
* Call to flush on line 288 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* flush => None
* __call__ => 'response_from_b response_from_b '
* Call to _check_return on line 325 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _check_return => 'response_from_b response_from_b '
* catch_format_error => 'response_from_b response_from_b '
* __call__ => 'response_from_b response_from_b '
* Call to __call__ on line 1 of <decorator-gen-9>
* Call to catch_format_error on line 186 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __call__ on line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => True
* __get__ => True
* Call to lookup on line 340 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _get_type on line 240 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _get_type => <class 'str'>
* Call to lookup_by_type on line 363 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to _get_mro on line 296 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* _get_mro => (<class 'str'>, <class 'object'>)
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* _in_deferred_types => False
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* _in_deferred_types => False
* lookup_by_type => None
* lookup => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => _repr_html_
* __get__ => _repr_html_
* Call to get_real_method on line 51 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/dir2.py
* Call to isclass on line 72 of /Users/gaufung/anaconda/lib/python3.6/inspect.py
* isclass => False
* get_real_method => None
* __call__ => None
* Call to _check_return on line 325 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _check_return => None
* catch_format_error => None
* __call__ => None
* Call to __call__ on line 1 of <decorator-gen-9>
* Call to catch_format_error on line 186 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __call__ on line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => True
* __get__ => True
* Call to lookup on line 340 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _get_type on line 240 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _get_type => <class 'str'>
* Call to lookup_by_type on line 363 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to _get_mro on line 296 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* _get_mro => (<class 'str'>, <class 'object'>)
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* _in_deferred_types => False
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* _in_deferred_types => False
* lookup_by_type => None
* lookup => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => _repr_markdown_
* __get__ => _repr_markdown_
* Call to get_real_method on line 51 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/dir2.py
* Call to isclass on line 72 of /Users/gaufung/anaconda/lib/python3.6/inspect.py
* isclass => False
* get_real_method => None
* __call__ => None
* Call to _check_return on line 325 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _check_return => None
* catch_format_error => None
* __call__ => None
* Call to __call__ on line 1 of <decorator-gen-9>
* Call to catch_format_error on line 186 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __call__ on line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => True
* __get__ => True
* Call to lookup on line 340 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _get_type on line 240 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _get_type => <class 'str'>
* Call to lookup_by_type on line 363 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to _get_mro on line 296 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* _get_mro => (<class 'str'>, <class 'object'>)
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* _in_deferred_types => False
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* _in_deferred_types => False
* lookup_by_type => None
* lookup => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => _repr_svg_
* __get__ => _repr_svg_
* Call to get_real_method on line 51 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/dir2.py
* Call to isclass on line 72 of /Users/gaufung/anaconda/lib/python3.6/inspect.py
* isclass => False
* get_real_method => None
* __call__ => None
* Call to _check_return on line 325 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _check_return => None
* catch_format_error => None
* __call__ => None
* Call to __call__ on line 1 of <decorator-gen-9>
* Call to catch_format_error on line 186 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __call__ on line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => True
* __get__ => True
* Call to lookup on line 340 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _get_type on line 240 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _get_type => <class 'str'>
* Call to lookup_by_type on line 363 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to _get_mro on line 296 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* _get_mro => (<class 'str'>, <class 'object'>)
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* _in_deferred_types => False
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* _in_deferred_types => False
* lookup_by_type => None
* lookup => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => _repr_png_
* __get__ => _repr_png_
* Call to get_real_method on line 51 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/dir2.py
* Call to isclass on line 72 of /Users/gaufung/anaconda/lib/python3.6/inspect.py
* isclass => False
* get_real_method => None
* __call__ => None
* Call to _check_return on line 325 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _check_return => None
* catch_format_error => None
* __call__ => None
* Call to __call__ on line 1 of <decorator-gen-9>
* Call to catch_format_error on line 186 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __call__ on line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => True
* __get__ => True
* Call to lookup on line 340 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _get_type on line 240 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _get_type => <class 'str'>
* Call to lookup_by_type on line 363 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to _get_mro on line 296 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* _get_mro => (<class 'str'>, <class 'object'>)
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* _in_deferred_types => False
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* _in_deferred_types => False
* lookup_by_type => None
* lookup => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => _repr_pdf_
* __get__ => _repr_pdf_
* Call to get_real_method on line 51 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/dir2.py
* Call to isclass on line 72 of /Users/gaufung/anaconda/lib/python3.6/inspect.py
* isclass => False
* get_real_method => None
* __call__ => None
* Call to _check_return on line 325 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _check_return => None
* catch_format_error => None
* __call__ => None
* Call to __call__ on line 1 of <decorator-gen-9>
* Call to catch_format_error on line 186 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __call__ on line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => True
* __get__ => True
* Call to lookup on line 340 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _get_type on line 240 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _get_type => <class 'str'>
* Call to lookup_by_type on line 363 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to _get_mro on line 296 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* _get_mro => (<class 'str'>, <class 'object'>)
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* _in_deferred_types => False
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* _in_deferred_types => False
* lookup_by_type => None
* lookup => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => _repr_jpeg_
* __get__ => _repr_jpeg_
* Call to get_real_method on line 51 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/dir2.py
* Call to isclass on line 72 of /Users/gaufung/anaconda/lib/python3.6/inspect.py
* isclass => False
* get_real_method => None
* __call__ => None
* Call to _check_return on line 325 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _check_return => None
* catch_format_error => None
* __call__ => None
* Call to __call__ on line 1 of <decorator-gen-9>
* Call to catch_format_error on line 186 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __call__ on line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => True
* __get__ => True
* Call to lookup on line 340 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _get_type on line 240 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _get_type => <class 'str'>
* Call to lookup_by_type on line 363 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to _get_mro on line 296 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* _get_mro => (<class 'str'>, <class 'object'>)
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* _in_deferred_types => False
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* _in_deferred_types => False
* lookup_by_type => None
* lookup => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => _repr_latex_
* __get__ => _repr_latex_
* Call to get_real_method on line 51 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/dir2.py
* Call to isclass on line 72 of /Users/gaufung/anaconda/lib/python3.6/inspect.py
* isclass => False
* get_real_method => None
* __call__ => None
* Call to _check_return on line 325 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _check_return => None
* catch_format_error => None
* __call__ => None
* Call to __call__ on line 1 of <decorator-gen-9>
* Call to catch_format_error on line 186 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __call__ on line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => True
* __get__ => True
* Call to lookup on line 340 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _get_type on line 240 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _get_type => <class 'str'>
* Call to lookup_by_type on line 363 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to _get_mro on line 296 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* _get_mro => (<class 'str'>, <class 'object'>)
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* _in_deferred_types => False
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* _in_deferred_types => False
* lookup_by_type => None
* lookup => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => _repr_json_
* __get__ => _repr_json_
* Call to get_real_method on line 51 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/dir2.py
* Call to isclass on line 72 of /Users/gaufung/anaconda/lib/python3.6/inspect.py
* isclass => False
* get_real_method => None
* __call__ => None
* Call to _check_return on line 794 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _check_return => None
* catch_format_error => None
* __call__ => None
* Call to __call__ on line 1 of <decorator-gen-9>
* Call to catch_format_error on line 186 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __call__ on line 297 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => True
* __get__ => True
* Call to lookup on line 340 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023896d8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _get_type on line 240 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _get_type => <class 'str'>
* Call to lookup_by_type on line 363 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to _get_mro on line 296 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/lib/pretty.py
* _get_mro => (<class 'str'>, <class 'object'>)
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x102389748>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023897b8>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* _in_deferred_types => False
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* Call to _in_deferred_types on line 516 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* _in_deferred_types => False
* lookup_by_type => None
* lookup => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => _repr_javascript_
* __get__ => _repr_javascript_
* Call to get_real_method on line 51 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/dir2.py
* Call to isclass on line 72 of /Users/gaufung/anaconda/lib/python3.6/inspect.py
* isclass => False
* get_real_method => None
* __call__ => None
* Call to _check_return on line 325 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/formatters.py
* _check_return => None
* catch_format_error => None
* __call__ => None
* format => ({'text/plain': "'response_from_b response_from_b '"}, {})
* compute_format_data => ({'text/plain': "'response_from_b response_from_b '"}, {})
* Call to update_user_ns on line 191 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/displayhook.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to push on line 1308 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* push => None
* Call to prompt_count on line 63 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/displayhook.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 3
* __get__ => 3
* prompt_count => 3
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to push on line 1308 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* push => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to prompt_count on line 63 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/displayhook.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 3
* __get__ => 3
* prompt_count => 3
* update_user_ns => None
* Call to fill_exec_result on line 217 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/displayhook.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ExecutionResult object at 1033c2748, execution_count=3 error_before_exec=None error_in_exec=None result=None>
* __get__ => <ExecutionResult object at 1033c2748, execution_count=3 error_before_exec=None error_in_exec=None result=None>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ExecutionResult object at 1033c2748, execution_count=3 error_before_exec=None error_in_exec=None result=None>
* __get__ => <ExecutionResult object at 1033c2748, execution_count=3 error_before_exec=None error_in_exec=None result=None>
* fill_exec_result => None
* Call to write_format_data on line 70 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/displayhook.py
* Call to encode_images on line 51 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* encode_images => {'text/plain': "'response_from_b response_from_b '"}
* write_format_data => None
* Call to log_output on line 221 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/displayhook.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.history.HistoryManager object at 0x1031a3b00>
* __get__ => <IPython.core.history.HistoryManager object at 0x1031a3b00>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _dynamic_default_callable on line 483 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _dynamic_default_callable => <bound method Instance.make_dynamic_default of <traitlets.traitlets.Dict object at 0x1023a8908>>
* Call to make_dynamic_default on line 1696 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* make_dynamic_default => {}
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => {}
* Call to validate_elements on line 2533 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __init__ on line 419 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* __init__ => None
* validate_elements => {}
* validate => {}
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => {}
* _validate => {}
* get => {}
* __get__ => {}
* Call to prompt_count on line 63 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/displayhook.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* __get__ => <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 3
* __get__ => 3
* prompt_count => 3
* log_output => None
* Call to finish_displayhook on line 74 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/displayhook.py
* Call to flush on line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>
Out[3]:
'response_from_b response_from_b '
* schedule => None
* Call to __init__ on line 498 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __init__ => None
* __init__ => None
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>
* schedule => None
* Call to wait on line 533 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __enter__ on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __enter__ => True
* Call to wait on line 263 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _is_owned => True
* Call to _release_save on line 248 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _release_save => None
* Call to _acquire_restore on line 251 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _acquire_restore => None
* wait => True
* Call to __exit__ on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __exit__ => None
* wait => True
* flush => None
* Call to flush on line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>
* schedule => None
* Call to __init__ on line 498 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __init__ => None
* __init__ => None
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>
* schedule => None
* Call to wait on line 533 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __enter__ on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __enter__ => True
* Call to wait on line 263 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _is_owned => True
* Call to _release_save on line 248 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _release_save => None
* Call to _acquire_restore on line 251 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _acquire_restore => None
* wait => True
* Call to __exit__ on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __exit__ => None
* wait => True
* flush => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <jupyter_client.session.Session object at 0x103193780>
* __get__ => <jupyter_client.session.Session object at 0x103193780>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.iostream.BackgroundSocket object at 0x1031d1b38>
* __get__ => <ipykernel.iostream.BackgroundSocket object at 0x1031d1b38>
* Call to send on line 608 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => True
* __get__ => True
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 60301
* __get__ => 60301
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 0
* __get__ => 0
* Call to serialize on line 549 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <function <lambda> at 0x103131f28>
* __get__ => <function <lambda> at 0x103131f28>
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* __init__ => None
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* iterencode => ['{"data":{"text/plain":"\'response_from_b response_from_b \'"},"metadata":{},"execution_count":3}']
* encode => {"data":{"text/plain":"'response_from_b response_from_b '"},"metadata":{},"execution_count":3}
* dumps => {"data":{"text/plain":"'response_from_b response_from_b '"},"metadata":{},"execution_count":3}
* dumps => b'{"data":{"text/plain":"\'response_from_b response_from_b \'"},"metadata":{},"execution_count":3}'
* <lambda> => b'{"data":{"text/plain":"\'response_from_b response_from_b \'"},"metadata":{},"execution_count":3}'
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <function <lambda> at 0x103131f28>
* __get__ => <function <lambda> at 0x103131f28>
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* __init__ => None
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to date_default on line 75 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* date_default => 2017-09-09T18:57:27.142739
* iterencode => ['{"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"execute_result","msg_id":"c5cb86a1-8e85-4432-8eb7-068105219420","date":"2017-09-09T18:57:27.142739","version":"5.0"}']
* encode => {"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"execute_result","msg_id":"c5cb86a1-8e85-4432-8eb7-068105219420","date":"2017-09-09T18:57:27.142739","version":"5.0"}
* dumps => {"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"execute_result","msg_id":"c5cb86a1-8e85-4432-8eb7-068105219420","date":"2017-09-09T18:57:27.142739","version":"5.0"}
* dumps => b'{"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"execute_result","msg_id":"c5cb86a1-8e85-4432-8eb7-068105219420","date":"2017-09-09T18:57:27.142739","version":"5.0"}'
* <lambda> => b'{"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"execute_result","msg_id":"c5cb86a1-8e85-4432-8eb7-068105219420","date":"2017-09-09T18:57:27.142739","version":"5.0"}'
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <function <lambda> at 0x103131f28>
* __get__ => <function <lambda> at 0x103131f28>
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* __init__ => None
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* iterencode => ['{"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}']
* encode => {"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}
* dumps => {"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}
* dumps => b'{"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}'
* <lambda> => b'{"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}'
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <function <lambda> at 0x103131f28>
* __get__ => <function <lambda> at 0x103131f28>
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* __init__ => None
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* iterencode => ['{}']
* encode => {}
* dumps => {}
* dumps => b'{}'
* <lambda> => b'{}'
* Call to sign on line 534 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <hmac.HMAC object at 0x1031d1c88>
* __get__ => <hmac.HMAC object at 0x1031d1c88>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <hmac.HMAC object at 0x1031d1c88>
* __get__ => <hmac.HMAC object at 0x1031d1c88>
* Call to copy on line 95 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* copy => <hmac.HMAC object at 0x1032ec630>
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* update => None
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* update => None
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* update => None
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* update => None
* Call to hexdigest on line 127 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to _current on line 108 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* _current => <sha256 HASH object @ 0x1032df530>
* hexdigest => 5901114055eade5aa8bb5b7cfdc6582cc2b771993c0c143f553b98e81a0ddde4
* Call to encode on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* encode => b'5901114055eade5aa8bb5b7cfdc6582cc2b771993c0c143f553b98e81a0ddde4'
* sign => b'5901114055eade5aa8bb5b7cfdc6582cc2b771993c0c143f553b98e81a0ddde4'
* serialize => [b'kernel.0259c03e-a0e4-4659-bf9b-461a7ffe2c1f.execute_result', b'<IDS|MSG>', b'5901114055eade5aa8bb5b7cfdc6582cc2b771993c0c143f553b98e81a0ddde4', b'{"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"execute_result","msg_id":"c5cb86a1-8e85-4432-8eb7-068105219420","date":"2017-09-09T18:57:27.142739","version":"5.0"}', b'{"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}', b'{}', b'{"data":{"text/plain":"\'response_from_b response_from_b \'"},"metadata":{},"execution_count":3}']
* Call to <listcomp> on line 675 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* <listcomp> => [58, 9, 64, 199, 193, 2, 94]
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 65536
* __get__ => 65536
* Call to send_multipart on line 247 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to send_multipart on line 194 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>
* schedule => None
* send_multipart => None
* send_multipart => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => False
* __get__ => False
* send => {'header': {'session': 'a64cfc19-4962-4592-9e57-b43320623708', 'username': 'gaufung', 'msg_type': 'execute_result', 'msg_id': 'c5cb86a1-8e85-4432-8eb7-068105219420', 'date': datetime.datetime(2017, 9, 9, 18, 57, 27, 142739), 'version': '5.0'}, 'msg_id': 'c5cb86a1-8e85-4432-8eb7-068105219420', 'msg_type': 'execute_result', 'parent_header': {'msg_id': '55CF182A591C443A9A4AAB0F7E5A6B39', 'username': 'username', 'session': '68D804B9BA994F5484684C2528DFF21C', 'msg_type': 'execute_request', 'version': '5.0', 'date': '2017-09-09T18:57:26.621373'}, 'content': {'data': {'text/plain': "'response_from_b response_from_b '"}, 'metadata': {}, 'execution_count': 3}, 'metadata': {}, 'tracker': <zmq.sugar.tracker.MessageTracker object at 0x102f5c6d8>}
* finish_displayhook => None
* __call__ => None
* <module> => None
* run_code => 0
* Call to softspace on line 119 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* softspace => 0
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2108 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => True
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => True
* _validate => True
* set => None
* __set__ => None
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _validate => None
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => exec_result
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* Call to trigger on line 66 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/events.py
* trigger => None
* Call to trigger on line 66 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/events.py
* trigger => None
* Call to __exit__ on line 54 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/display_trap.py
* Call to unset on line 67 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/display_trap.py
* unset => None
* __exit__ => False
* Call to __exit__ on line 74 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to deactivate on line 107 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* Call to iteritems on line 176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* iteritems => <dict_itemiterator object at 0x1033ef4a8>
* Call to remove_builtin on line 93 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* remove_builtin => None
* Call to remove_builtin on line 93 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* remove_builtin => None
* Call to remove_builtin on line 93 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* remove_builtin => None
* Call to remove_builtin on line 93 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/builtin_trap.py
* remove_builtin => None
* deactivate => None
* __exit__ => False
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.history.HistoryManager object at 0x1031a3b00>
* __get__ => <IPython.core.history.HistoryManager object at 0x1031a3b00>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 3
* __get__ => 3
* Call to store_output on line 746 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/history.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => False
* __get__ => False
* store_output => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 3
* __get__ => 3
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1866 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate_bounds on line 1830 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _validate_bounds => 4
* validate => 4
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => 4
* _validate => 4
* Call to _notify_trait on line 1131 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to notify_change on line 1140 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => execution_count
* Call to __getattr__ on line 11 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/utils/bunch.py
* __getattr__ => change
* notify_change => None
* _notify_trait => None
* set => None
* __set__ => None
* Call to _restore_input on line 168 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <built-in function input>
* __get__ => <built-in function input>
* _restore_input => None
* Call to success on line 178 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* success => True
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 4
* __get__ => 4
* Call to user_expressions on line 2387 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* Call to user_global_ns on line 1065 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/interactiveshell.py
* user_global_ns => {'__name__': '__main__', '__doc__': 'Automatically created module for IPython interactive environment', '__package__': None, '__loader__': None, '__spec__': None, '__builtin__': <module 'builtins' (built-in)>, '__builtins__': <module 'builtins' (built-in)>, '_ih': ['', "import sys\n\n\ndef trace_calls(frame, event, arg):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    func_line_no = frame.f_lineno\n    func_filename = co.co_filename\n    caller = frame.f_back\n    caller_line_no = caller.f_lineno\n    caller_filename = caller.f_code.co_filename\n    print('* Call to', func_name)\n    print('*  on line {} of {}'.format(\n        func_line_no, func_filename))\n    print('*  from line {} of {}'.format(\n        caller_line_no, caller_filename))\n    return\n\n\ndef b():\n    print('inside b()\\n')\n\n\ndef a():\n    print('inside a()\\n')\n    b()\n\n\nsys.settrace(trace_calls)\na()", "import functools\nimport sys\n\n\ndef trace_lines(frame, event, arg):\n    if event != 'line':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    line_no = frame.f_lineno\n    print('*  {} line {}'.format(func_name, line_no))\n\n\ndef trace_calls(frame, event, arg, to_be_traced):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    print('* Call to {} on line {} of {}'.format(\n        func_name, line_no, filename))\n    if func_name in to_be_traced:\n        # Trace into this function\n        return trace_lines\n    return\n\n\ndef c(input):\n    print('input =', input)\n    print('Leaving c()')\n\n\ndef b(arg):\n    val = arg * 5\n    c(val)\n    print('Leaving b()')\n\n\ndef a():\n    b(2)\n    print('Leaving a()')\n\n\ntracer = functools.partial(trace_calls, to_be_traced=['b'])\nsys.settrace(tracer)\na()", "import sys\n\n\ndef trace_calls_and_returns(frame, event, arg):\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    if event == 'call':\n        print('* Call to {} on line {} of {}'.format(\n            func_name, line_no, filename))\n        return trace_calls_and_returns\n    elif event == 'return':\n        print('* {} => {}'.format(func_name, arg))\n    return\n\n\ndef b():\n    print('inside b()')\n    return 'response_from_b '\n\n\ndef a():\n    print('inside a()')\n    val = b()\n    return val * 2\n\n\nsys.settrace(trace_calls_and_returns)\na()"], '_oh': {3: 'response_from_b response_from_b '}, '_dh': ['/Users/gaufung/WorkSpace/PythonStandardLibrary/RunningFeatures/sys'], '_sh': <module 'IPython.core.shadowns' from '/Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/shadowns.py'>, 'In': ['', "import sys\n\n\ndef trace_calls(frame, event, arg):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    func_line_no = frame.f_lineno\n    func_filename = co.co_filename\n    caller = frame.f_back\n    caller_line_no = caller.f_lineno\n    caller_filename = caller.f_code.co_filename\n    print('* Call to', func_name)\n    print('*  on line {} of {}'.format(\n        func_line_no, func_filename))\n    print('*  from line {} of {}'.format(\n        caller_line_no, caller_filename))\n    return\n\n\ndef b():\n    print('inside b()\\n')\n\n\ndef a():\n    print('inside a()\\n')\n    b()\n\n\nsys.settrace(trace_calls)\na()", "import functools\nimport sys\n\n\ndef trace_lines(frame, event, arg):\n    if event != 'line':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    line_no = frame.f_lineno\n    print('*  {} line {}'.format(func_name, line_no))\n\n\ndef trace_calls(frame, event, arg, to_be_traced):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    print('* Call to {} on line {} of {}'.format(\n        func_name, line_no, filename))\n    if func_name in to_be_traced:\n        # Trace into this function\n        return trace_lines\n    return\n\n\ndef c(input):\n    print('input =', input)\n    print('Leaving c()')\n\n\ndef b(arg):\n    val = arg * 5\n    c(val)\n    print('Leaving b()')\n\n\ndef a():\n    b(2)\n    print('Leaving a()')\n\n\ntracer = functools.partial(trace_calls, to_be_traced=['b'])\nsys.settrace(tracer)\na()", "import sys\n\n\ndef trace_calls_and_returns(frame, event, arg):\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    if event == 'call':\n        print('* Call to {} on line {} of {}'.format(\n            func_name, line_no, filename))\n        return trace_calls_and_returns\n    elif event == 'return':\n        print('* {} => {}'.format(func_name, arg))\n    return\n\n\ndef b():\n    print('inside b()')\n    return 'response_from_b '\n\n\ndef a():\n    print('inside a()')\n    val = b()\n    return val * 2\n\n\nsys.settrace(trace_calls_and_returns)\na()"], 'Out': {3: 'response_from_b response_from_b '}, 'get_ipython': <bound method InteractiveShell.get_ipython of <ipykernel.zmqshell.ZMQInteractiveShell object at 0x1031a3668>>, 'exit': <IPython.core.autocall.ZMQExitAutocall object at 0x1031faa20>, 'quit': <IPython.core.autocall.ZMQExitAutocall object at 0x1031faa20>, '_': 'response_from_b response_from_b ', '__': '', '___': '', '_i': "import functools\nimport sys\n\n\ndef trace_lines(frame, event, arg):\n    if event != 'line':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    line_no = frame.f_lineno\n    print('*  {} line {}'.format(func_name, line_no))\n\n\ndef trace_calls(frame, event, arg, to_be_traced):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    print('* Call to {} on line {} of {}'.format(\n        func_name, line_no, filename))\n    if func_name in to_be_traced:\n        # Trace into this function\n        return trace_lines\n    return\n\n\ndef c(input):\n    print('input =', input)\n    print('Leaving c()')\n\n\ndef b(arg):\n    val = arg * 5\n    c(val)\n    print('Leaving b()')\n\n\ndef a():\n    b(2)\n    print('Leaving a()')\n\n\ntracer = functools.partial(trace_calls, to_be_traced=['b'])\nsys.settrace(tracer)\na()", '_ii': "import sys\n\n\ndef trace_calls(frame, event, arg):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    func_line_no = frame.f_lineno\n    func_filename = co.co_filename\n    caller = frame.f_back\n    caller_line_no = caller.f_lineno\n    caller_filename = caller.f_code.co_filename\n    print('* Call to', func_name)\n    print('*  on line {} of {}'.format(\n        func_line_no, func_filename))\n    print('*  from line {} of {}'.format(\n        caller_line_no, caller_filename))\n    return\n\n\ndef b():\n    print('inside b()\\n')\n\n\ndef a():\n    print('inside a()\\n')\n    b()\n\n\nsys.settrace(trace_calls)\na()", '_iii': '', '_i1': "import sys\n\n\ndef trace_calls(frame, event, arg):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    func_line_no = frame.f_lineno\n    func_filename = co.co_filename\n    caller = frame.f_back\n    caller_line_no = caller.f_lineno\n    caller_filename = caller.f_code.co_filename\n    print('* Call to', func_name)\n    print('*  on line {} of {}'.format(\n        func_line_no, func_filename))\n    print('*  from line {} of {}'.format(\n        caller_line_no, caller_filename))\n    return\n\n\ndef b():\n    print('inside b()\\n')\n\n\ndef a():\n    print('inside a()\\n')\n    b()\n\n\nsys.settrace(trace_calls)\na()", 'sys': <module 'sys' (built-in)>, 'trace_calls': <function trace_calls at 0x103387840>, 'b': <function b at 0x10337e620>, 'a': <function a at 0x103448400>, '_i2': "import functools\nimport sys\n\n\ndef trace_lines(frame, event, arg):\n    if event != 'line':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    line_no = frame.f_lineno\n    print('*  {} line {}'.format(func_name, line_no))\n\n\ndef trace_calls(frame, event, arg, to_be_traced):\n    if event != 'call':\n        return\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    print('* Call to {} on line {} of {}'.format(\n        func_name, line_no, filename))\n    if func_name in to_be_traced:\n        # Trace into this function\n        return trace_lines\n    return\n\n\ndef c(input):\n    print('input =', input)\n    print('Leaving c()')\n\n\ndef b(arg):\n    val = arg * 5\n    c(val)\n    print('Leaving b()')\n\n\ndef a():\n    b(2)\n    print('Leaving a()')\n\n\ntracer = functools.partial(trace_calls, to_be_traced=['b'])\nsys.settrace(tracer)\na()", 'functools': <module 'functools' from '/Users/gaufung/anaconda/lib/python3.6/functools.py'>, 'trace_lines': <function trace_lines at 0x103377bf8>, 'c': <function c at 0x10330a378>, 'tracer': functools.partial(<function trace_calls at 0x103387840>, to_be_traced=['b']), '_i3': "import sys\n\n\ndef trace_calls_and_returns(frame, event, arg):\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    if event == 'call':\n        print('* Call to {} on line {} of {}'.format(\n            func_name, line_no, filename))\n        return trace_calls_and_returns\n    elif event == 'return':\n        print('* {} => {}'.format(func_name, arg))\n    return\n\n\ndef b():\n    print('inside b()')\n    return 'response_from_b '\n\n\ndef a():\n    print('inside a()')\n    val = b()\n    return val * 2\n\n\nsys.settrace(trace_calls_and_returns)\na()", 'trace_calls_and_returns': <function trace_calls_and_returns at 0x10337e8c8>, '_3': 'response_from_b response_from_b '}
* Call to iteritems on line 176 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/utils/py3compat.py
* iteritems => <dict_itemiterator object at 0x1033ef778>
* user_expressions => {}
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.payload.PayloadManager object at 0x10322ee10>
* __get__ => <IPython.core.payload.PayloadManager object at 0x10322ee10>
* Call to read_payload on line 51 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/payload.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => []
* __get__ => []
* read_payload => []
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <IPython.core.payload.PayloadManager object at 0x10322ee10>
* __get__ => <IPython.core.payload.PayloadManager object at 0x10322ee10>
* Call to clear_payload on line 54 of /Users/gaufung/anaconda/lib/python3.6/site-packages/IPython/core/payload.py
* Call to __set__ on line 574 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to set on line 556 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to _validate on line 585 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2321 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 2233 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate on line 1671 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate => []
* Call to validate_elements on line 2314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements on line 2244 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate_elements => []
* validate_elements => []
* validate => []
* Call to validate_elements on line 2314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to validate_elements on line 2244 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* validate_elements => []
* validate_elements => []
* validate => []
* Call to _cross_validate on line 594 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* _cross_validate => []
* _validate => []
* set => None
* __set__ => None
* clear_payload => None
* Call to flush on line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>
* schedule => None
* Call to __init__ on line 498 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __init__ => None
* __init__ => None
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>
* schedule => None
* Call to wait on line 533 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __enter__ on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __enter__ => True
* Call to wait on line 263 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _is_owned => True
* Call to _release_save on line 248 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _release_save => None
* Call to _acquire_restore on line 251 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _acquire_restore => None
* wait => True
* Call to __exit__ on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __exit__ => None
* wait => True
* flush => None
* Call to flush on line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>
* schedule => None
* Call to __init__ on line 498 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __init__ => None
* __init__ => None
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>
* schedule => None
* Call to wait on line 533 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __enter__ on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __enter__ => True
* Call to wait on line 263 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _is_owned => True
* Call to _release_save on line 248 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _release_save => None
* Call to _acquire_restore on line 251 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _acquire_restore => None
* wait => True
* Call to __exit__ on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __exit__ => None
* wait => True
* flush => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 0.0005
* __get__ => 0.0005
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 0.0005
* __get__ => 0.0005
* Call to json_clean on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => False
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => True
* __instancecheck__ => False
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => False
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => True
* __instancecheck__ => False
* Call to iteritems on line 175 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* iteritems => <dict_itemiterator object at 0x1033ef3b8>
* Call to json_clean on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => False
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => True
* __instancecheck__ => False
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => False
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => True
* __instancecheck__ => False
* json_clean => ok
* Call to json_clean on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => True
* __instancecheck__ => True
* json_clean => 3
* Call to json_clean on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => False
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => True
* __instancecheck__ => False
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => False
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => True
* __instancecheck__ => False
* Call to iteritems on line 175 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* iteritems => <dict_itemiterator object at 0x1033ef638>
* json_clean => {}
* Call to json_clean on line 97 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => False
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => True
* __instancecheck__ => False
* Call to __instancecheck__ on line 178 of /Users/gaufung/anaconda/lib/python3.6/abc.py
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => False
* Call to __contains__ on line 70 of /Users/gaufung/anaconda/lib/python3.6/_weakrefset.py
* __contains__ => True
* __instancecheck__ => False
* Call to <listcomp> on line 153 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/jsonutil.py
* <listcomp> => []
* json_clean => []
* json_clean => {'status': 'ok', 'execution_count': 3, 'user_expressions': {}, 'payload': []}
* Call to finish_metadata on line 137 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/ipkernel.py
* finish_metadata => {'started': datetime.datetime(2017, 9, 9, 18, 57, 26, 640264), 'dependencies_met': True, 'engine': '0259c03e-a0e4-4659-bf9b-461a7ffe2c1f', 'status': 'ok'}
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <jupyter_client.session.Session object at 0x103193780>
* __get__ => <jupyter_client.session.Session object at 0x103193780>
* Call to send on line 608 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg on line 515 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_header on line 512 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_id on line 460 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to uuid4 on line 600 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __init__ on line 106 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* __init__ => None
* uuid4 => f0a048c8-54f0-4d85-b56f-920136f9fa40
* Call to __str__ on line 226 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* __str__ => f0a048c8-54f0-4d85-b56f-920136f9fa40
* msg_id => f0a048c8-54f0-4d85-b56f-920136f9fa40
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => gaufung
* __get__ => gaufung
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => a64cfc19-4962-4592-9e57-b43320623708
* __get__ => a64cfc19-4962-4592-9e57-b43320623708
* Call to msg_header on line 206 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* msg_header => {'session': 'a64cfc19-4962-4592-9e57-b43320623708', 'username': 'gaufung', 'msg_type': 'execute_reply', 'msg_id': 'f0a048c8-54f0-4d85-b56f-920136f9fa40', 'date': datetime.datetime(2017, 9, 9, 18, 57, 28, 325925), 'version': '5.0'}
* msg_header => {'session': 'a64cfc19-4962-4592-9e57-b43320623708', 'username': 'gaufung', 'msg_type': 'execute_reply', 'msg_id': 'f0a048c8-54f0-4d85-b56f-920136f9fa40', 'date': datetime.datetime(2017, 9, 9, 18, 57, 28, 325925), 'version': '5.0'}
* Call to extract_header on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* extract_header => {'msg_id': '55CF182A591C443A9A4AAB0F7E5A6B39', 'username': 'username', 'session': '68D804B9BA994F5484684C2528DFF21C', 'msg_type': 'execute_request', 'version': '5.0', 'date': '2017-09-09T18:57:26.621373'}
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* msg => {'header': {'session': 'a64cfc19-4962-4592-9e57-b43320623708', 'username': 'gaufung', 'msg_type': 'execute_reply', 'msg_id': 'f0a048c8-54f0-4d85-b56f-920136f9fa40', 'date': datetime.datetime(2017, 9, 9, 18, 57, 28, 325925), 'version': '5.0'}, 'msg_id': 'f0a048c8-54f0-4d85-b56f-920136f9fa40', 'msg_type': 'execute_reply', 'parent_header': {'msg_id': '55CF182A591C443A9A4AAB0F7E5A6B39', 'username': 'username', 'session': '68D804B9BA994F5484684C2528DFF21C', 'msg_type': 'execute_request', 'version': '5.0', 'date': '2017-09-09T18:57:26.621373'}, 'content': {'status': 'ok', 'execution_count': 3, 'user_expressions': {}, 'payload': []}, 'metadata': {'started': datetime.datetime(2017, 9, 9, 18, 57, 26, 640264), 'dependencies_met': True, 'engine': '0259c03e-a0e4-4659-bf9b-461a7ffe2c1f', 'status': 'ok'}}
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => True
* __get__ => True
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 60301
* __get__ => 60301
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 0
* __get__ => 0
* Call to serialize on line 549 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <function <lambda> at 0x103131f28>
* __get__ => <function <lambda> at 0x103131f28>
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* __init__ => None
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* iterencode => ['{"status":"ok","execution_count":3,"user_expressions":{},"payload":[]}']
* encode => {"status":"ok","execution_count":3,"user_expressions":{},"payload":[]}
* dumps => {"status":"ok","execution_count":3,"user_expressions":{},"payload":[]}
* dumps => b'{"status":"ok","execution_count":3,"user_expressions":{},"payload":[]}'
* <lambda> => b'{"status":"ok","execution_count":3,"user_expressions":{},"payload":[]}'
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <function <lambda> at 0x103131f28>
* __get__ => <function <lambda> at 0x103131f28>
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* __init__ => None
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to date_default on line 75 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* date_default => 2017-09-09T18:57:28.325925
* iterencode => ['{"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"execute_reply","msg_id":"f0a048c8-54f0-4d85-b56f-920136f9fa40","date":"2017-09-09T18:57:28.325925","version":"5.0"}']
* encode => {"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"execute_reply","msg_id":"f0a048c8-54f0-4d85-b56f-920136f9fa40","date":"2017-09-09T18:57:28.325925","version":"5.0"}
* dumps => {"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"execute_reply","msg_id":"f0a048c8-54f0-4d85-b56f-920136f9fa40","date":"2017-09-09T18:57:28.325925","version":"5.0"}
* dumps => b'{"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"execute_reply","msg_id":"f0a048c8-54f0-4d85-b56f-920136f9fa40","date":"2017-09-09T18:57:28.325925","version":"5.0"}'
* <lambda> => b'{"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"execute_reply","msg_id":"f0a048c8-54f0-4d85-b56f-920136f9fa40","date":"2017-09-09T18:57:28.325925","version":"5.0"}'
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <function <lambda> at 0x103131f28>
* __get__ => <function <lambda> at 0x103131f28>
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* __init__ => None
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* iterencode => ['{"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}']
* encode => {"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}
* dumps => {"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}
* dumps => b'{"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}'
* <lambda> => b'{"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}'
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <function <lambda> at 0x103131f28>
* __get__ => <function <lambda> at 0x103131f28>
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* __init__ => None
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to date_default on line 75 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* date_default => 2017-09-09T18:57:26.640264
* iterencode => ['{"started":"2017-09-09T18:57:26.640264","dependencies_met":true,"engine":"0259c03e-a0e4-4659-bf9b-461a7ffe2c1f","status":"ok"}']
* encode => {"started":"2017-09-09T18:57:26.640264","dependencies_met":true,"engine":"0259c03e-a0e4-4659-bf9b-461a7ffe2c1f","status":"ok"}
* dumps => {"started":"2017-09-09T18:57:26.640264","dependencies_met":true,"engine":"0259c03e-a0e4-4659-bf9b-461a7ffe2c1f","status":"ok"}
* dumps => b'{"started":"2017-09-09T18:57:26.640264","dependencies_met":true,"engine":"0259c03e-a0e4-4659-bf9b-461a7ffe2c1f","status":"ok"}'
* <lambda> => b'{"started":"2017-09-09T18:57:26.640264","dependencies_met":true,"engine":"0259c03e-a0e4-4659-bf9b-461a7ffe2c1f","status":"ok"}'
* Call to sign on line 534 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <hmac.HMAC object at 0x1031d1c88>
* __get__ => <hmac.HMAC object at 0x1031d1c88>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <hmac.HMAC object at 0x1031d1c88>
* __get__ => <hmac.HMAC object at 0x1031d1c88>
* Call to copy on line 95 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* copy => <hmac.HMAC object at 0x103487e48>
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* update => None
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* update => None
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* update => None
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* update => None
* Call to hexdigest on line 127 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to _current on line 108 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* _current => <sha256 HASH object @ 0x1032bf6e8>
* hexdigest => a8aa53c59e7f6eee3a766ef2f87206fba37d5c94a423ea920b649815f47197cf
* Call to encode on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* encode => b'a8aa53c59e7f6eee3a766ef2f87206fba37d5c94a423ea920b649815f47197cf'
* sign => b'a8aa53c59e7f6eee3a766ef2f87206fba37d5c94a423ea920b649815f47197cf'
* serialize => [b'68D804B9BA994F5484684C2528DFF21C', b'<IDS|MSG>', b'a8aa53c59e7f6eee3a766ef2f87206fba37d5c94a423ea920b649815f47197cf', b'{"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"execute_reply","msg_id":"f0a048c8-54f0-4d85-b56f-920136f9fa40","date":"2017-09-09T18:57:28.325925","version":"5.0"}', b'{"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}', b'{"started":"2017-09-09T18:57:26.640264","dependencies_met":true,"engine":"0259c03e-a0e4-4659-bf9b-461a7ffe2c1f","status":"ok"}', b'{"status":"ok","execution_count":3,"user_expressions":{},"payload":[]}']
* Call to <listcomp> on line 675 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* <listcomp> => [32, 9, 64, 198, 193, 126, 70]
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 65536
* __get__ => 65536
* Call to send_multipart on line 255 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to put on line 115 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to __enter__ on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __enter__ => True
* Call to _put on line 206 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* _put => None
* Call to notify on line 334 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _is_owned => True
* notify => None
* Call to __exit__ on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __exit__ => None
* put => None
* Call to on_send on line 193 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _check_closed on line 497 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* _check_closed => None
* Call to wrap on line 253 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* wrap => <function wrap.<locals>.null_wrapper at 0x1032c90d0>
* on_send => None
* Call to _add_io_state on line 514 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _update_handler on line 526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to update_handler on line 727 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to split_fd on line 635 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to __getattr__ on line 35 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/attrsettr.py
* __getattr__ => None
* split_fd => (<zmq.sugar.socket.Socket object at 0x1031afe28>, <zmq.sugar.socket.Socket object at 0x1031afe28>)
* Call to modify on line 111 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to _map_events on line 84 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* _map_events => 7
* Call to modify on line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
* Call to register on line 28 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
* register => None
* modify => None
* modify => None
* update_handler => None
* _update_handler => None
* _add_io_state => None
* send_multipart => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => False
* __get__ => False
* send => {'header': {'session': 'a64cfc19-4962-4592-9e57-b43320623708', 'username': 'gaufung', 'msg_type': 'execute_reply', 'msg_id': 'f0a048c8-54f0-4d85-b56f-920136f9fa40', 'date': datetime.datetime(2017, 9, 9, 18, 57, 28, 325925), 'version': '5.0'}, 'msg_id': 'f0a048c8-54f0-4d85-b56f-920136f9fa40', 'msg_type': 'execute_reply', 'parent_header': {'msg_id': '55CF182A591C443A9A4AAB0F7E5A6B39', 'username': 'username', 'session': '68D804B9BA994F5484684C2528DFF21C', 'msg_type': 'execute_request', 'version': '5.0', 'date': '2017-09-09T18:57:26.621373'}, 'content': {'status': 'ok', 'execution_count': 3, 'user_expressions': {}, 'payload': []}, 'metadata': {'started': datetime.datetime(2017, 9, 9, 18, 57, 26, 640264), 'dependencies_met': True, 'engine': '0259c03e-a0e4-4659-bf9b-461a7ffe2c1f', 'status': 'ok'}, 'tracker': <zmq.sugar.tracker.MessageTracker object at 0x102f5c6d8>}
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <Logger IPKernelApp (WARNING)>
* __get__ => <Logger IPKernelApp (WARNING)>
* Call to debug on line 1279 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to isEnabledFor on line 1537 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* Call to getEffectiveLevel on line 1523 of /Users/gaufung/anaconda/lib/python3.6/logging/__init__.py
* getEffectiveLevel => 30
* isEnabledFor => False
* debug => None
* Call to post_handler_hook on line 243 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to signal on line 45 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to _enum_to_int on line 35 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* _enum_to_int => 2
* Call to _enum_to_int on line 35 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* _enum_to_int => 1
* Call to _int_to_enum on line 25 of /Users/gaufung/anaconda/lib/python3.6/signal.py
* Call to __call__ on line 265 of /Users/gaufung/anaconda/lib/python3.6/enum.py
* Call to __new__ on line 515 of /Users/gaufung/anaconda/lib/python3.6/enum.py
* Call to _missing_ on line 544 of /Users/gaufung/anaconda/lib/python3.6/enum.py
* _missing_ => None
* __new__ => None
* __call__ => None
* _int_to_enum => <built-in function default_int_handler>
* signal => <built-in function default_int_handler>
* post_handler_hook => None
* Call to flush on line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>
* schedule => None
* Call to __init__ on line 498 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __init__ => None
* __init__ => None
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>
* schedule => None
* Call to wait on line 533 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __enter__ on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __enter__ => True
* Call to wait on line 263 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _is_owned => True
* Call to _release_save on line 248 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _release_save => None
* Call to _acquire_restore on line 251 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _acquire_restore => None
* wait => True
* Call to __exit__ on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __exit__ => None
* wait => True
* flush => None
* Call to flush on line 312 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>
* schedule => None
* Call to __init__ on line 498 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __init__ on line 215 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __init__ => None
* __init__ => None
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>
* schedule => None
* Call to wait on line 533 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to __enter__ on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __enter__ => True
* Call to wait on line 263 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _is_owned => True
* Call to _release_save on line 248 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _release_save => None
* Call to _acquire_restore on line 251 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _acquire_restore => None
* wait => True
* Call to __exit__ on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __exit__ => None
* wait => True
* flush => None
* Call to _publish_status on line 314 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <jupyter_client.session.Session object at 0x103193780>
* __get__ => <jupyter_client.session.Session object at 0x103193780>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <ipykernel.iostream.BackgroundSocket object at 0x1031d1b38>
* __get__ => <ipykernel.iostream.BackgroundSocket object at 0x1031d1b38>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {'header': {'msg_id': '55CF182A591C443A9A4AAB0F7E5A6B39', 'username': 'username', 'session': '68D804B9BA994F5484684C2528DFF21C', 'msg_type': 'execute_request', 'version': '5.0', 'date': '2017-09-09T18:57:26.621373'}, 'msg_id': '55CF182A591C443A9A4AAB0F7E5A6B39', 'msg_type': 'execute_request', 'parent_header': {}, 'metadata': {}, 'content': {'code': "import sys\n\n\ndef trace_calls_and_returns(frame, event, arg):\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    if event == 'call':\n        print('* Call to {} on line {} of {}'.format(\n            func_name, line_no, filename))\n        return trace_calls_and_returns\n    elif event == 'return':\n        print('* {} => {}'.format(func_name, arg))\n    return\n\n\ndef b():\n    print('inside b()')\n    return 'response_from_b '\n\n\ndef a():\n    print('inside a()')\n    val = b()\n    return val * 2\n\n\nsys.settrace(trace_calls_and_returns)\na()", 'silent': False, 'store_history': True, 'user_expressions': {}, 'allow_stdin': True, 'stop_on_error': True}, 'buffers': []}
* __get__ => {'header': {'msg_id': '55CF182A591C443A9A4AAB0F7E5A6B39', 'username': 'username', 'session': '68D804B9BA994F5484684C2528DFF21C', 'msg_type': 'execute_request', 'version': '5.0', 'date': '2017-09-09T18:57:26.621373'}, 'msg_id': '55CF182A591C443A9A4AAB0F7E5A6B39', 'msg_type': 'execute_request', 'parent_header': {}, 'metadata': {}, 'content': {'code': "import sys\n\n\ndef trace_calls_and_returns(frame, event, arg):\n    co = frame.f_code\n    func_name = co.co_name\n    if func_name == 'write':\n        # Ignore write() calls from printing\n        return\n    line_no = frame.f_lineno\n    filename = co.co_filename\n    if event == 'call':\n        print('* Call to {} on line {} of {}'.format(\n            func_name, line_no, filename))\n        return trace_calls_and_returns\n    elif event == 'return':\n        print('* {} => {}'.format(func_name, arg))\n    return\n\n\ndef b():\n    print('inside b()')\n    return 'response_from_b '\n\n\ndef a():\n    print('inside a()')\n    val = b()\n    return val * 2\n\n\nsys.settrace(trace_calls_and_returns)\na()", 'silent': False, 'store_history': True, 'user_expressions': {}, 'allow_stdin': True, 'stop_on_error': True}, 'buffers': []}
* Call to _topic on line 619 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/kernelbase.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 0259c03e-a0e4-4659-bf9b-461a7ffe2c1f
* __get__ => 0259c03e-a0e4-4659-bf9b-461a7ffe2c1f
* Call to cast_bytes on line 29 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* Call to encode on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* encode => b'kernel.0259c03e-a0e4-4659-bf9b-461a7ffe2c1f.status'
* cast_bytes => b'kernel.0259c03e-a0e4-4659-bf9b-461a7ffe2c1f.status'
* _topic => b'kernel.0259c03e-a0e4-4659-bf9b-461a7ffe2c1f.status'
* Call to send on line 608 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg on line 515 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_header on line 512 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to msg_id on line 460 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to uuid4 on line 600 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* Call to __init__ on line 106 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* __init__ => None
* uuid4 => 7dad7046-cb4b-4ff4-8ca8-7aec14f32bcf
* Call to __str__ on line 226 of /Users/gaufung/anaconda/lib/python3.6/uuid.py
* __str__ => 7dad7046-cb4b-4ff4-8ca8-7aec14f32bcf
* msg_id => 7dad7046-cb4b-4ff4-8ca8-7aec14f32bcf
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => gaufung
* __get__ => gaufung
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => a64cfc19-4962-4592-9e57-b43320623708
* __get__ => a64cfc19-4962-4592-9e57-b43320623708
* Call to msg_header on line 206 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* msg_header => {'session': 'a64cfc19-4962-4592-9e57-b43320623708', 'username': 'gaufung', 'msg_type': 'status', 'msg_id': '7dad7046-cb4b-4ff4-8ca8-7aec14f32bcf', 'date': datetime.datetime(2017, 9, 9, 18, 57, 28, 366482), 'version': '5.0'}
* msg_header => {'session': 'a64cfc19-4962-4592-9e57-b43320623708', 'username': 'gaufung', 'msg_type': 'status', 'msg_id': '7dad7046-cb4b-4ff4-8ca8-7aec14f32bcf', 'date': datetime.datetime(2017, 9, 9, 18, 57, 28, 366482), 'version': '5.0'}
* Call to extract_header on line 211 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* extract_header => {'msg_id': '55CF182A591C443A9A4AAB0F7E5A6B39', 'username': 'username', 'session': '68D804B9BA994F5484684C2528DFF21C', 'msg_type': 'execute_request', 'version': '5.0', 'date': '2017-09-09T18:57:26.621373'}
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => {}
* __get__ => {}
* msg => {'header': {'session': 'a64cfc19-4962-4592-9e57-b43320623708', 'username': 'gaufung', 'msg_type': 'status', 'msg_id': '7dad7046-cb4b-4ff4-8ca8-7aec14f32bcf', 'date': datetime.datetime(2017, 9, 9, 18, 57, 28, 366482), 'version': '5.0'}, 'msg_id': '7dad7046-cb4b-4ff4-8ca8-7aec14f32bcf', 'msg_type': 'status', 'parent_header': {'msg_id': '55CF182A591C443A9A4AAB0F7E5A6B39', 'username': 'username', 'session': '68D804B9BA994F5484684C2528DFF21C', 'msg_type': 'execute_request', 'version': '5.0', 'date': '2017-09-09T18:57:26.621373'}, 'content': {'execution_state': 'idle'}, 'metadata': {}}
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => True
* __get__ => True
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 60301
* __get__ => 60301
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 0
* __get__ => 0
* Call to serialize on line 549 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <function <lambda> at 0x103131f28>
* __get__ => <function <lambda> at 0x103131f28>
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* __init__ => None
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* iterencode => ['{"execution_state":"idle"}']
* encode => {"execution_state":"idle"}
* dumps => {"execution_state":"idle"}
* dumps => b'{"execution_state":"idle"}'
* <lambda> => b'{"execution_state":"idle"}'
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <function <lambda> at 0x103131f28>
* __get__ => <function <lambda> at 0x103131f28>
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* __init__ => None
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to date_default on line 75 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/jsonutil.py
* date_default => 2017-09-09T18:57:28.366482
* iterencode => ['{"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"status","msg_id":"7dad7046-cb4b-4ff4-8ca8-7aec14f32bcf","date":"2017-09-09T18:57:28.366482","version":"5.0"}']
* encode => {"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"status","msg_id":"7dad7046-cb4b-4ff4-8ca8-7aec14f32bcf","date":"2017-09-09T18:57:28.366482","version":"5.0"}
* dumps => {"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"status","msg_id":"7dad7046-cb4b-4ff4-8ca8-7aec14f32bcf","date":"2017-09-09T18:57:28.366482","version":"5.0"}
* dumps => b'{"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"status","msg_id":"7dad7046-cb4b-4ff4-8ca8-7aec14f32bcf","date":"2017-09-09T18:57:28.366482","version":"5.0"}'
* <lambda> => b'{"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"status","msg_id":"7dad7046-cb4b-4ff4-8ca8-7aec14f32bcf","date":"2017-09-09T18:57:28.366482","version":"5.0"}'
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <function <lambda> at 0x103131f28>
* __get__ => <function <lambda> at 0x103131f28>
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* __init__ => None
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* iterencode => ['{"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}']
* encode => {"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}
* dumps => {"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}
* dumps => b'{"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}'
* <lambda> => b'{"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}'
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <function <lambda> at 0x103131f28>
* __get__ => <function <lambda> at 0x103131f28>
* Call to <lambda> on line 94 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to dumps on line 31 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/utils/jsonapi.py
* Call to dumps on line 183 of /Users/gaufung/anaconda/lib/python3.6/json/__init__.py
* Call to __init__ on line 104 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* __init__ => None
* Call to encode on line 182 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* Call to iterencode on line 204 of /Users/gaufung/anaconda/lib/python3.6/json/encoder.py
* iterencode => ['{}']
* encode => {}
* dumps => {}
* dumps => b'{}'
* <lambda> => b'{}'
* Call to sign on line 534 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <hmac.HMAC object at 0x1031d1c88>
* __get__ => <hmac.HMAC object at 0x1031d1c88>
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => <hmac.HMAC object at 0x1031d1c88>
* __get__ => <hmac.HMAC object at 0x1031d1c88>
* Call to copy on line 95 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* copy => <hmac.HMAC object at 0x1032eca90>
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* update => None
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* update => None
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* update => None
* Call to update on line 90 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* update => None
* Call to hexdigest on line 127 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* Call to _current on line 108 of /Users/gaufung/anaconda/lib/python3.6/hmac.py
* _current => <sha256 HASH object @ 0x1032bf6e8>
* hexdigest => 946052840cf4787cbce9c4297f1ab2ce5f617d576a5658c7582b35679fd04600
* Call to encode on line 19 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipython_genutils/py3compat.py
* encode => b'946052840cf4787cbce9c4297f1ab2ce5f617d576a5658c7582b35679fd04600'
* sign => b'946052840cf4787cbce9c4297f1ab2ce5f617d576a5658c7582b35679fd04600'
* serialize => [b'kernel.0259c03e-a0e4-4659-bf9b-461a7ffe2c1f.status', b'<IDS|MSG>', b'946052840cf4787cbce9c4297f1ab2ce5f617d576a5658c7582b35679fd04600', b'{"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"status","msg_id":"7dad7046-cb4b-4ff4-8ca8-7aec14f32bcf","date":"2017-09-09T18:57:28.366482","version":"5.0"}', b'{"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}', b'{}', b'{"execution_state":"idle"}']
* Call to <listcomp> on line 675 of /Users/gaufung/anaconda/lib/python3.6/site-packages/jupyter_client/session.py
* <listcomp> => [50, 9, 64, 191, 193, 2, 26]
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => 65536
* __get__ => 65536
* Call to send_multipart on line 247 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to send_multipart on line 194 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to schedule on line 180 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* Call to is_alive on line 1104 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to is_set on line 506 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* is_set => True
* Call to _wait_for_tstate_lock on line 1062 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _wait_for_tstate_lock => None
* is_alive => True
* Call to _event_pipe on line 89 of /Users/gaufung/anaconda/lib/python3.6/site-packages/ipykernel/iostream.py
* _event_pipe => <zmq.sugar.socket.Socket object at 0x10328e888>
* schedule => None
* send_multipart => None
* send_multipart => None
* Call to __get__ on line 543 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* Call to get on line 524 of /Users/gaufung/anaconda/lib/python3.6/site-packages/traitlets/traitlets.py
* get => False
* __get__ => False
* send => {'header': {'session': 'a64cfc19-4962-4592-9e57-b43320623708', 'username': 'gaufung', 'msg_type': 'status', 'msg_id': '7dad7046-cb4b-4ff4-8ca8-7aec14f32bcf', 'date': datetime.datetime(2017, 9, 9, 18, 57, 28, 366482), 'version': '5.0'}, 'msg_id': '7dad7046-cb4b-4ff4-8ca8-7aec14f32bcf', 'msg_type': 'status', 'parent_header': {'msg_id': '55CF182A591C443A9A4AAB0F7E5A6B39', 'username': 'username', 'session': '68D804B9BA994F5484684C2528DFF21C', 'msg_type': 'execute_request', 'version': '5.0', 'date': '2017-09-09T18:57:26.621373'}, 'content': {'execution_state': 'idle'}, 'metadata': {}, 'tracker': <zmq.sugar.tracker.MessageTracker object at 0x102f5c6d8>}
* _publish_status => None
* Call to __exit__ on line 223 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* __exit__ => None
* Call to _rebuild_io_state on line 501 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to receiving on line 396 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* receiving => True
* Call to sending on line 400 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to empty on line 90 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to _qsize on line 202 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* _qsize => 1
* empty => False
* sending => True
* _rebuild_io_state => None
* Call to poll on line 117 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to poll on line 77 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
* poll => [(<zmq.sugar.socket.Socket object at 0x1031afe28>, 2)]
* Call to <listcomp> on line 123 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to _remap_events on line 96 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* _remap_events => 4
* <listcomp> => [(<zmq.sugar.socket.Socket object at 0x1031afe28>, 4)]
* poll => [(<zmq.sugar.socket.Socket object at 0x1031afe28>, 4)]
* Call to null_wrapper on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* Call to _handle_events on line 427 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to _handle_send on line 477 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to sending on line 400 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to empty on line 90 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to _qsize on line 202 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* _qsize => 1
* empty => False
* sending => True
* Call to get on line 147 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to __enter__ on line 239 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __enter__ => True
* Call to _qsize on line 202 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* _qsize => 1
* Call to _get on line 210 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* _get => ([b'68D804B9BA994F5484684C2528DFF21C', b'<IDS|MSG>', b'a8aa53c59e7f6eee3a766ef2f87206fba37d5c94a423ea920b649815f47197cf', b'{"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"execute_reply","msg_id":"f0a048c8-54f0-4d85-b56f-920136f9fa40","date":"2017-09-09T18:57:28.325925","version":"5.0"}', b'{"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}', b'{"started":"2017-09-09T18:57:26.640264","dependencies_met":true,"engine":"0259c03e-a0e4-4659-bf9b-461a7ffe2c1f","status":"ok"}', b'{"status":"ok","execution_count":3,"user_expressions":{},"payload":[]}'], {'flags': 0, 'copy': True, 'track': False})
* Call to notify on line 334 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* Call to _is_owned on line 254 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* _is_owned => True
* notify => None
* Call to __exit__ on line 242 of /Users/gaufung/anaconda/lib/python3.6/threading.py
* __exit__ => None
* get => ([b'68D804B9BA994F5484684C2528DFF21C', b'<IDS|MSG>', b'a8aa53c59e7f6eee3a766ef2f87206fba37d5c94a423ea920b649815f47197cf', b'{"session":"a64cfc19-4962-4592-9e57-b43320623708","username":"gaufung","msg_type":"execute_reply","msg_id":"f0a048c8-54f0-4d85-b56f-920136f9fa40","date":"2017-09-09T18:57:28.325925","version":"5.0"}', b'{"msg_id":"55CF182A591C443A9A4AAB0F7E5A6B39","username":"username","session":"68D804B9BA994F5484684C2528DFF21C","msg_type":"execute_request","version":"5.0","date":"2017-09-09T18:57:26.621373"}', b'{"started":"2017-09-09T18:57:26.640264","dependencies_met":true,"engine":"0259c03e-a0e4-4659-bf9b-461a7ffe2c1f","status":"ok"}', b'{"status":"ok","execution_count":3,"user_expressions":{},"payload":[]}'], {'flags': 0, 'copy': True, 'track': False})
* Call to send_multipart on line 326 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/socket.py
* send_multipart => None
* Call to _run_callback on line 407 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to __enter__ on line 219 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* __enter__ => None
* Call to null_wrapper on line 271 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* Call to <lambda> on line 266 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* <lambda> => None
* null_wrapper => None
* Call to __exit__ on line 223 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/stack_context.py
* __exit__ => None
* _run_callback => None
* _handle_send => None
* Call to _rebuild_io_state on line 501 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to receiving on line 396 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* receiving => True
* Call to sending on line 400 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to empty on line 90 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* Call to _qsize on line 202 of /Users/gaufung/anaconda/lib/python3.6/queue.py
* _qsize => 0
* empty => True
* sending => False
* Call to _update_handler on line 526 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/zmqstream.py
* Call to update_handler on line 727 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to split_fd on line 635 of /Users/gaufung/anaconda/lib/python3.6/site-packages/tornado/ioloop.py
* Call to __getattr__ on line 35 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/attrsettr.py
* __getattr__ => None
* split_fd => (<zmq.sugar.socket.Socket object at 0x1031afe28>, <zmq.sugar.socket.Socket object at 0x1031afe28>)
* Call to modify on line 111 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to _map_events on line 84 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* _map_events => 5
* Call to modify on line 59 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
* Call to register on line 28 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py
* register => None
* modify => None
* modify => None
* update_handler => None
* _update_handler => None
* _rebuild_io_state => None
* _handle_events => None
* null_wrapper => None
* Call to poll on line 117 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/eventloop/ioloop.py
* Call to poll on line 77 of /Users/gaufung/anaconda/lib/python3.6/site-packages/zmq/sugar/poll.py