bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#27258: 26.0.50; Possible undefined behavior in Fmapbacktrace


From: Philipp
Subject: bug#27258: 26.0.50; Possible undefined behavior in Fmapbacktrace
Date: Mon, 05 Jun 2017 21:51:44 +0200

Insert the following into /tmp/rec.el:

;; -*- lexical-binding: t; -*-

(require 'cl-lib)

(defun recurse (i g)
  (if (= i 0)
      (funcall g (cl-gensym))
    (recurse (1- i) g)))

(recurse 100 (lambda (sym)
               (message "outer: %s" sym)
               (mapbacktrace
                (lambda (_ _ args _)
                  (recurse 100 (lambda (sym)
                                 (message "inner: %s %s" sym args)))))))

Then run

  emacs -Q -batch -l /tmp/rec.el
  
The printed messages will either be way too short, or Emacs will
segfault.  Re-running the command a couple of times consistently
generated a segfault for me.

My guess is that pdlvec got reallocated, but Fmapbacktrace uses pointers
instead of indices to access its element, so they pointers became
invalidated and point to garbage.

Output of 'bt full':

#0  0x00000001002affe4 in Flist (nargs=4323278931, args=0x9) at alloc.c:2873
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#1  0x0000000100320bed in backtrace_frame_apply (function=Python Exception 
<type 'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, pdl=0x106029da0) at eval.c:3579
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        flags = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#2  0x00000001003209b0 in Fmapbacktrace (function=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, base=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
) at eval.c:3616
        pdl = 0x106029da0
#3  0x0000000100303a24 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2226
        i = 2
        maxargs = 2
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 345
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#4  0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#5  0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=1, arg_vector=0x7fff5fb6e158) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 344
        i = 1
        optional = false
        rest = false
        previous_optional_or_rest = false
#6  0x000000010031cbea in Ffuncall (nargs=2, args=0x7fff5fb6e150) at eval.c:2761
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        numargs = 1
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 343
#7  0x0000000100303793 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2194
        vals = 0x7fff5fb6e150
        argnum = 2
        sa_avail = 16368
        sa_count = 343
        sa_must_free = false
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 342
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#8  0x0000000100304297 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:406
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#9  0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 341
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#10 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#11 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb6f200) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 340
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#12 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=339) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb6f200
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 340
        sa_must_free = false
#13 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 339
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#14 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#15 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#16 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 338
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#17 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#18 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb707b0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 337
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#19 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=336) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb707b0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 337
        sa_must_free = false
#20 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 336
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#21 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#22 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#23 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 335
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#24 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#25 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb71d60) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 334
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#26 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=333) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb71d60
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 334
        sa_must_free = false
#27 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 333
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#28 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#29 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#30 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 332
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#31 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#32 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb73310) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 331
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#33 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=330) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb73310
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 331
        sa_must_free = false
#34 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 330
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#35 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#36 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#37 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 329
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#38 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#39 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb748c0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 328
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#40 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=327) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb748c0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 328
        sa_must_free = false
#41 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 327
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#42 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#43 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#44 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 326
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#45 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#46 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb75e70) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 325
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#47 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=324) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb75e70
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 325
        sa_must_free = false
#48 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 324
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#49 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#50 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#51 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 323
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#52 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#53 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb77420) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 322
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#54 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=321) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb77420
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 322
        sa_must_free = false
#55 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 321
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#56 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#57 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#58 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 320
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#59 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#60 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb789d0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 319
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#61 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=318) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb789d0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 319
        sa_must_free = false
#62 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 318
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#63 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#64 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#65 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 317
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#66 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#67 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb79f80) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 316
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#68 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=315) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb79f80
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 316
        sa_must_free = false
#69 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 315
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#70 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#71 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#72 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 314
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#73 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#74 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb7b530) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 313
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#75 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=312) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb7b530
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 313
        sa_must_free = false
#76 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 312
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#77 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#78 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#79 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 311
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#80 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#81 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb7cae0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 310
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#82 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=309) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb7cae0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 310
        sa_must_free = false
#83 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 309
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#84 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#85 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#86 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 308
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#87 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#88 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb7e090) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 307
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#89 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=306) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb7e090
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 307
        sa_must_free = false
#90 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 306
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#91 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#92 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#93 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 305
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#94 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#95 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb7f640) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 304
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#96 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=303) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb7f640
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 304
        sa_must_free = false
#97 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 303
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#98 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#99 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#100 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 302
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#101 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#102 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb80bf0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 301
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#103 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=300) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb80bf0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 301
        sa_must_free = false
#104 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 300
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#105 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#106 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#107 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 299
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#108 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#109 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb821a0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 298
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#110 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=297) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb821a0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 298
        sa_must_free = false
#111 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 297
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#112 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#113 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#114 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 296
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#115 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#116 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb83750) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 295
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#117 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=294) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb83750
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 295
        sa_must_free = false
#118 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 294
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#119 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#120 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#121 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 293
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#122 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#123 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb84d00) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 292
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#124 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=291) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb84d00
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 292
        sa_must_free = false
#125 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 291
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#126 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#127 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#128 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 290
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#129 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#130 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb862b0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 289
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#131 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=288) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb862b0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 289
        sa_must_free = false
#132 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 288
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#133 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#134 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#135 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 287
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#136 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#137 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb87860) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 286
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#138 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=285) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb87860
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 286
        sa_must_free = false
#139 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 285
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#140 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#141 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#142 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 284
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#143 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#144 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb88e10) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 283
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#145 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=282) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb88e10
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 283
        sa_must_free = false
#146 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 282
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#147 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#148 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#149 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 281
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#150 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#151 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb8a3c0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 280
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#152 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=279) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb8a3c0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 280
        sa_must_free = false
#153 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 279
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#154 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#155 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#156 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 278
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#157 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#158 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb8b970) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 277
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#159 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=276) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb8b970
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 277
        sa_must_free = false
#160 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 276
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#161 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#162 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#163 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 275
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#164 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#165 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb8cf20) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 274
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#166 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=273) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb8cf20
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 274
        sa_must_free = false
#167 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 273
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#168 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#169 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#170 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 272
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#171 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#172 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb8e4d0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 271
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#173 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=270) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb8e4d0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 271
        sa_must_free = false
#174 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 270
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#175 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#176 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#177 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 269
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#178 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#179 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb8fa80) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 268
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#180 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=267) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb8fa80
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 268
        sa_must_free = false
#181 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 267
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#182 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#183 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#184 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 266
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#185 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#186 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb91030) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 265
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#187 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=264) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb91030
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 265
        sa_must_free = false
#188 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 264
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#189 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#190 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#191 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 263
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#192 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#193 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb925e0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 262
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#194 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=261) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb925e0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 262
        sa_must_free = false
#195 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 261
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#196 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#197 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#198 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 260
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#199 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#200 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb93b90) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 259
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#201 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=258) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb93b90
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 259
        sa_must_free = false
#202 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 258
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#203 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#204 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#205 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 257
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#206 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#207 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb95140) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 256
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#208 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=255) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb95140
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 256
        sa_must_free = false
#209 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 255
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#210 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#211 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#212 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 254
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#213 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#214 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb966f0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 253
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#215 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=252) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb966f0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 253
        sa_must_free = false
#216 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 252
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#217 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#218 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#219 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 251
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#220 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#221 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb97ca0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 250
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#222 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=249) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb97ca0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 250
        sa_must_free = false
#223 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 249
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#224 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#225 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#226 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 248
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#227 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#228 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb99250) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 247
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#229 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=246) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb99250
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 247
        sa_must_free = false
#230 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 246
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#231 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#232 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#233 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 245
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#234 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#235 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb9a800) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 244
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#236 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=243) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb9a800
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 244
        sa_must_free = false
#237 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 243
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#238 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#239 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#240 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 242
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#241 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#242 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb9bdb0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 241
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#243 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=240) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb9bdb0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 241
        sa_must_free = false
#244 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 240
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#245 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#246 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#247 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 239
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#248 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#249 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb9d360) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 238
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#250 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=237) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb9d360
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 238
        sa_must_free = false
#251 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 237
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#252 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#253 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#254 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 236
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#255 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#256 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb9e910) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 235
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#257 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=234) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb9e910
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 235
        sa_must_free = false
#258 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 234
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#259 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#260 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#261 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 233
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#262 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#263 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fb9fec0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 232
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#264 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=231) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fb9fec0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 232
        sa_must_free = false
#265 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 231
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#266 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#267 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#268 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 230
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#269 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#270 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fba1470) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 229
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#271 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=228) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fba1470
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 229
        sa_must_free = false
#272 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 228
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#273 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#274 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#275 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 227
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#276 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#277 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fba2a20) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 226
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#278 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=225) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fba2a20
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 226
        sa_must_free = false
#279 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 225
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#280 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#281 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#282 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 224
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#283 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#284 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fba3fd0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 223
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#285 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=222) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fba3fd0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 223
        sa_must_free = false
#286 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 222
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#287 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#288 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#289 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 221
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#290 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#291 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fba5580) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 220
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#292 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=219) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fba5580
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 220
        sa_must_free = false
#293 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 219
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#294 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#295 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#296 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 218
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#297 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#298 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fba6b30) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 217
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#299 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=216) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fba6b30
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 217
        sa_must_free = false
#300 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 216
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#301 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#302 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#303 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 215
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#304 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#305 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fba80e0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 214
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#306 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=213) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fba80e0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 214
        sa_must_free = false
#307 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 213
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#308 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#309 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#310 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 212
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#311 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#312 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fba9690) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 211
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#313 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=210) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fba9690
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 211
        sa_must_free = false
#314 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 210
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#315 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#316 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#317 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 209
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#318 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#319 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbaac40) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 208
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#320 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=207) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbaac40
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 208
        sa_must_free = false
#321 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 207
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#322 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#323 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#324 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 206
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#325 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#326 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbac1f0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 205
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#327 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=204) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbac1f0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 205
        sa_must_free = false
#328 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 204
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#329 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#330 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#331 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 203
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#332 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#333 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbad7a0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 202
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#334 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=201) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbad7a0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 202
        sa_must_free = false
#335 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 201
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#336 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#337 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#338 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 200
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#339 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#340 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbaed50) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 199
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#341 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=198) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbaed50
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 199
        sa_must_free = false
#342 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 198
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#343 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#344 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#345 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 197
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#346 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#347 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbb0300) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 196
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#348 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=195) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbb0300
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 196
        sa_must_free = false
#349 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 195
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#350 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#351 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#352 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 194
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#353 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#354 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbb18b0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 193
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#355 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=192) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbb18b0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 193
        sa_must_free = false
#356 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 192
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#357 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#358 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#359 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 191
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#360 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#361 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbb2e60) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 190
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#362 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=189) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbb2e60
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 190
        sa_must_free = false
#363 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 189
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#364 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#365 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#366 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 188
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#367 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#368 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbb4410) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 187
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#369 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=186) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbb4410
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 187
        sa_must_free = false
#370 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 186
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#371 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#372 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#373 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 185
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#374 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#375 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbb59c0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 184
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#376 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=183) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbb59c0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 184
        sa_must_free = false
#377 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 183
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#378 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#379 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#380 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 182
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#381 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#382 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbb6f70) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 181
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#383 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=180) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbb6f70
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 181
        sa_must_free = false
#384 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 180
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#385 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#386 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#387 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 179
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#388 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#389 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbb8520) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 178
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#390 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=177) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbb8520
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 178
        sa_must_free = false
#391 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 177
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#392 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#393 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#394 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 176
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#395 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#396 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbb9ad0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 175
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#397 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=174) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbb9ad0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 175
        sa_must_free = false
#398 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 174
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#399 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#400 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#401 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 173
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#402 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#403 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbbb080) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 172
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#404 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=171) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbbb080
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 172
        sa_must_free = false
#405 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 171
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#406 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#407 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#408 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 170
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#409 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#410 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbbc630) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 169
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#411 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=168) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbbc630
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 169
        sa_must_free = false
#412 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 168
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#413 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#414 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#415 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 167
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#416 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#417 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbbdbe0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 166
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#418 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=165) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbbdbe0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 166
        sa_must_free = false
#419 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 165
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#420 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#421 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#422 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 164
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#423 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#424 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbbf190) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 163
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#425 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=162) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbbf190
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 163
        sa_must_free = false
#426 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 162
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#427 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#428 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#429 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 161
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#430 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#431 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbc0740) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 160
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#432 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=159) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbc0740
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 160
        sa_must_free = false
#433 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 159
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#434 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#435 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#436 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 158
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#437 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#438 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbc1cf0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 157
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#439 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=156) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbc1cf0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 157
        sa_must_free = false
#440 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 156
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#441 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#442 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#443 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 155
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#444 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#445 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbc32a0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 154
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#446 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=153) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbc32a0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 154
        sa_must_free = false
#447 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 153
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#448 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#449 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#450 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 152
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#451 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#452 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbc4850) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 151
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#453 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=150) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbc4850
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 151
        sa_must_free = false
#454 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 150
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#455 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#456 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#457 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 149
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#458 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#459 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbc5e00) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 148
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#460 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=147) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbc5e00
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 148
        sa_must_free = false
#461 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 147
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#462 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#463 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#464 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 146
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#465 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#466 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbc73b0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 145
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#467 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=144) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbc73b0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 145
        sa_must_free = false
#468 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 144
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#469 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#470 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#471 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 143
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#472 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#473 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbc8960) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 142
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#474 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=141) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbc8960
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 142
        sa_must_free = false
#475 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 141
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#476 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#477 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#478 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 140
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#479 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#480 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbc9f10) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 139
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#481 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=138) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbc9f10
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 139
        sa_must_free = false
#482 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 138
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#483 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#484 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#485 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 137
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#486 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#487 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbcb4c0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 136
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#488 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=135) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbcb4c0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 136
        sa_must_free = false
#489 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 135
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#490 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#491 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#492 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 134
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#493 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#494 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbcca70) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 133
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#495 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=132) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbcca70
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 133
        sa_must_free = false
#496 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 132
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#497 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#498 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#499 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 131
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#500 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#501 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbce020) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 130
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#502 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=129) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbce020
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 130
        sa_must_free = false
#503 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 129
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#504 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#505 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#506 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 128
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#507 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#508 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbcf5d0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 127
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#509 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=126) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbcf5d0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 127
        sa_must_free = false
#510 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 126
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#511 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#512 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#513 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 125
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#514 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#515 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbd0b80) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 124
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#516 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=123) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbd0b80
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 124
        sa_must_free = false
#517 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 123
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#518 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#519 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#520 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 122
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#521 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#522 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbd2130) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 121
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#523 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=120) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbd2130
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 121
        sa_must_free = false
#524 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 120
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#525 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#526 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#527 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 119
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#528 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#529 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbd36e0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 118
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#530 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=117) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbd36e0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 118
        sa_must_free = false
#531 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 117
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#532 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#533 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#534 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 116
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#535 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#536 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbd4c90) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 115
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#537 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=114) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbd4c90
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 115
        sa_must_free = false
#538 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 114
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#539 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#540 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#541 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 113
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#542 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#543 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbd6240) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 112
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#544 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=111) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbd6240
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 112
        sa_must_free = false
#545 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 111
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#546 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#547 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#548 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 110
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#549 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#550 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbd77f0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 109
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#551 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=108) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbd77f0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 109
        sa_must_free = false
#552 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 108
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#553 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#554 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#555 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 107
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#556 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#557 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbd8da0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 106
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#558 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=105) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbd8da0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 106
        sa_must_free = false
#559 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 105
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#560 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#561 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#562 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 104
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#563 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#564 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbda350) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 103
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#565 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=102) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbda350
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 103
        sa_must_free = false
#566 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 102
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#567 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#568 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#569 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 101
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#570 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#571 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbdb900) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 100
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#572 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=99) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbdb900
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 100
        sa_must_free = false
#573 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 99
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#574 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#575 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#576 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 98
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#577 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#578 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbdceb0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 97
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#579 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=96) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbdceb0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 97
        sa_must_free = false
#580 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 96
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#581 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#582 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#583 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 95
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#584 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#585 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbde460) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 94
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#586 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=93) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbde460
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 94
        sa_must_free = false
#587 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 93
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#588 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#589 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#590 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 92
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#591 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#592 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbdfa10) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 91
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#593 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=90) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbdfa10
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 91
        sa_must_free = false
#594 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 90
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#595 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#596 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#597 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 89
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#598 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#599 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbe0fc0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 88
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#600 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=87) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbe0fc0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 88
        sa_must_free = false
#601 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 87
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#602 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#603 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#604 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 86
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#605 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#606 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbe2570) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 85
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#607 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=84) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbe2570
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 85
        sa_must_free = false
#608 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 84
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#609 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#610 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#611 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 83
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#612 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#613 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbe3b20) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 82
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#614 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=81) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbe3b20
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 82
        sa_must_free = false
#615 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 81
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#616 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#617 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#618 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 80
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#619 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#620 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbe50d0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 79
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#621 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=78) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbe50d0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 79
        sa_must_free = false
#622 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 78
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#623 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#624 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#625 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 77
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#626 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#627 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbe6680) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 76
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#628 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=75) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbe6680
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 76
        sa_must_free = false
#629 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 75
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#630 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#631 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#632 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 74
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#633 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#634 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbe7c30) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 73
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#635 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=72) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbe7c30
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 73
        sa_must_free = false
#636 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 72
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#637 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#638 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#639 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 71
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#640 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#641 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbe91e0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 70
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#642 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=69) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbe91e0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 70
        sa_must_free = false
#643 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 69
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#644 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#645 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#646 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 68
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#647 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#648 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbea790) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 67
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#649 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=66) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbea790
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 67
        sa_must_free = false
#650 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 66
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#651 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#652 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#653 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 65
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#654 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#655 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbebd40) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 64
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#656 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=63) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbebd40
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 64
        sa_must_free = false
#657 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 63
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#658 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#659 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#660 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 62
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#661 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#662 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbed2f0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 61
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#663 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=60) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbed2f0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 61
        sa_must_free = false
#664 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 60
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#665 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#666 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#667 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 59
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#668 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#669 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbee8a0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 58
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#670 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=57) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbee8a0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 58
        sa_must_free = false
#671 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 57
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#672 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#673 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#674 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 56
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#675 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#676 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbefe50) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 55
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#677 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=54) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbefe50
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 55
        sa_must_free = false
#678 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 54
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#679 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#680 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#681 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 53
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#682 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#683 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbf1400) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 52
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#684 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=51) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbf1400
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 52
        sa_must_free = false
#685 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 51
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#686 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#687 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#688 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 50
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#689 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#690 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbf29b0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 49
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#691 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=48) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbf29b0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 49
        sa_must_free = false
#692 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 48
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#693 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#694 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#695 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 47
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#696 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#697 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbf3f60) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 46
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#698 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=45) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbf3f60
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 46
        sa_must_free = false
#699 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 45
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#700 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#701 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#702 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 44
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#703 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#704 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbf5510) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 43
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#705 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=42) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbf5510
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 43
        sa_must_free = false
#706 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 42
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#707 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#708 0x0000000100304381 in Fif (args=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:407
        cond = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#709 0x00000001002feb06 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2176
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        numargs = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 41
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#710 0x000000010030440c in Fprogn (body=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:449
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#711 0x000000010031ee88 in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=2, arg_vector=0x7fff5fbf6ac0) at eval.c:3023
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 40
        i = 2
        optional = false
        rest = false
        previous_optional_or_rest = false
#712 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=39) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 2
        numargs = 2
        arg_vector = 0x7fff5fbf6ac0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16368
        sa_count = 40
        sa_must_free = false
#713 0x0000000100303f4f in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2298
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 39
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#714 0x0000000100390047 in readevalloop_eager_expand_eval (val=Python Exception 
<type 'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, macroexpand=Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 
) at lread.c:1779
No locals.
#715 0x0000000100387cfb in readevalloop (readcharfun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, stream=0x0, sourcename=Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, printflag=false, unibyte=Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, readfun=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, start=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, end=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has 
no attribute 'value': 
) at lread.c:1947
        count1 = 39
        c = 40
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 35
        b = 0x101e04630
        continue_reading_p = true
        lex_bound = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        whole_buffer = true
        first_sexp = false
        macroexpand = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

#716 0x0000000100388452 in Feval_buffer (buffer=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, printflag=Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 
, filename=Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 
, unibyte=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, do_allow_print=Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 
) at lread.c:2014
        count = 31
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        buf = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#717 0x000000010031e329 in funcall_subr (subr=0x100942630 <Seval_buffer>, 
numargs=5, args=0x7fff5fbf7f60) at eval.c:2834
        internal_argbuf = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
        internal_args = 0x7fff5fbf7f60
#718 0x000000010031ca18 in Ffuncall (nargs=6, args=0x7fff5fbf7f58) at 
eval.c:2747
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        numargs = 5
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 30
#719 0x00000001003c4413 in exec_byte_code (bytestr=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, vector=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, maxdepth=Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 
, args_template=Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 
, nargs=0, args=0x0) at bytecode.c:641
        op = 5
        type = (CONDITION_CASE | CATCHER_ALL | unknown: 44)
        targets = {0x1003c8a10 <exec_byte_code+40192>, 0x1003c8a9b 
<exec_byte_code+40331>, 0x1003c8aa0 <exec_byte_code+40336>, 0x1003c8aa5 
<exec_byte_code+40341>, 0x1003c8aaa <exec_byte_code+40346>, 0x1003c8aaf 
<exec_byte_code+40351>, 0x1003c8b24 <exec_byte_code+40468>, 0x1003c8bad 
<exec_byte_code+40605>, 0x1003c377e <exec_byte_code+19054>, 0x1003c3783 
<exec_byte_code+19059>, 0x1003c3788 <exec_byte_code+19064>, 0x1003c378d 
<exec_byte_code+19069>, 0x1003c3792 <exec_byte_code+19074>, 0x1003c3797 
<exec_byte_code+19079>, 0x1003c37ab <exec_byte_code+19099>, 0x1003c3732 
<exec_byte_code+18978>, 0x1003c3e7a <exec_byte_code+20842>, 0x1003c3e7f 
<exec_byte_code+20847>, 0x1003c3e84 <exec_byte_code+20852>, 0x1003c3e89 
<exec_byte_code+20857>, 0x1003c3e8e <exec_byte_code+20862>, 0x1003c3e93 
<exec_byte_code+20867>, 0x1003c3ef3 <exec_byte_code+20963>, 0x1003c3ea7 
<exec_byte_code+20887>, 0x1003c42a3 <exec_byte_code+21907>, 0x1003c42a8 
<exec_byte_code+21912>, 0x1003c42ad <exec_byte_code+21917>, 0x1003c42b2 
<exec_byte_code+21922>, 0x1003c42b7 <exec_byte_code+21927>, 0x1003c42bc 
<exec_byte_code+21932>, 0x1003c4234 <exec_byte_code+21796>, 0x1003c4257 
<exec_byte_code+21831>, 0x1003c43a0 <exec_byte_code+22160>, 0x1003c43a5 
<exec_byte_code+22165>, 0x1003c43aa <exec_byte_code+22170>, 0x1003c43af 
<exec_byte_code+22175>, 0x1003c43b4 <exec_byte_code+22180>, 0x1003c43b9 
<exec_byte_code+22185>, 0x1003c4331 <exec_byte_code+22049>, 0x1003c4354 
<exec_byte_code+22084>, 0x1003c44d4 <exec_byte_code+22468>, 0x1003c44d9 
<exec_byte_code+22473>, 0x1003c44de <exec_byte_code+22478>, 0x1003c44e3 
<exec_byte_code+22483>, 0x1003c44e8 <exec_byte_code+22488>, 0x1003c44ed 
<exec_byte_code+22493>, 0x1003c4465 <exec_byte_code+22357>, 0x1003c4488 
<exec_byte_code+22392>, 0x1003c5089 <exec_byte_code+25465>, 0x1003c4f32 
<exec_byte_code+25122>, 0x1003c4f23 <exec_byte_code+25107>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c5340 <exec_byte_code+26160>, 0x1003c54f7 
<exec_byte_code+26599>, 0x1003c559c <exec_byte_code+26764>, 0x1003c5641 
<exec_byte_code+26929>, 0x1003c56e9 <exec_byte_code+27097>, 0x1003c3c00 
<exec_byte_code+20208>, 0x1003c3cc2 <exec_byte_code+20402>, 0x1003c57c1 
<exec_byte_code+27313>, 0x1003c3adc <exec_byte_code+19916>, 0x1003c3d55 
<exec_byte_code+20549>, 0x1003c5880 <exec_byte_code+27504>, 0x1003c5913 
<exec_byte_code+27651>, 0x1003c5980 <exec_byte_code+27760>, 0x1003c5a13 
<exec_byte_code+27907>, 0x1003c5a96 <exec_byte_code+28038>, 0x1003c5bd2 
<exec_byte_code+28354>, 0x1003c5c3f <exec_byte_code+28463>, 0x1003c5cd2 
<exec_byte_code+28610>, 0x1003c5d8d <exec_byte_code+28797>, 0x1003c5dfa 
<exec_byte_code+28906>, 0x1003c5e67 <exec_byte_code+29015>, 0x1003c5efa 
<exec_byte_code+29162>, 0x1003c5f8d <exec_byte_code+29309>, 0x1003c6020 
<exec_byte_code+29456>, 0x1003c60db <exec_byte_code+29643>, 0x1003c615e 
<exec_byte_code+29774>, 0x1003c61e1 <exec_byte_code+29905>, 0x1003c631d 
<exec_byte_code+30221>, 0x1003c63dd <exec_byte_code+30413>, 0x1003c649d 
<exec_byte_code+30605>, 0x1003c6736 <exec_byte_code+31270>, 0x1003c67ce 
<exec_byte_code+31422>, 0x1003c6866 <exec_byte_code+31574>, 0x1003c68fe 
<exec_byte_code+31726>, 0x1003c6996 <exec_byte_code+31878>, 0x1003c6a19 
<exec_byte_code+32009>, 0x1003c6ae0 <exec_byte_code+32208>, 0x1003c6b63 
<exec_byte_code+32339>, 0x1003c6be6 <exec_byte_code+32470>, 0x1003c6c69 
<exec_byte_code+32601>, 0x1003c6e02 <exec_byte_code+33010>, 0x1003c4d24 
<exec_byte_code+24596>, 0x1003c6e93 <exec_byte_code+33155>, 0x1003c6f00 
<exec_byte_code+33264>, 0x1003c702a <exec_byte_code+33562>, 0x1003c70b4 
<exec_byte_code+33700>, 0x1003c713e <exec_byte_code+33838>, 0x1003c71ab 
<exec_byte_code+33947>, 0x1003c721d <exec_byte_code+34061>, 0x1003c728f 
<exec_byte_code+34175>, 0x1003c7309 <exec_byte_code+34297>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c7399 <exec_byte_code+34441>, 0x1003c740b 
<exec_byte_code+34555>, 0x1003c747d <exec_byte_code+34669>, 0x1003c74ef 
<exec_byte_code+34783>, 0x1003c7561 <exec_byte_code+34897>, 0x1003c75d3 
<exec_byte_code+35011>, 0x1003c4d29 <exec_byte_code+24601>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c7640 <exec_byte_code+35120>, 0x1003c76cc 
<exec_byte_code+35260>, 0x1003c7739 <exec_byte_code+35369>, 0x1003c77a6 
<exec_byte_code+35478>, 0x1003c7839 <exec_byte_code+35625>, 0x1003c78cc 
<exec_byte_code+35772>, 0x1003c7939 <exec_byte_code+35881>, 0x1003c7b27 
<exec_byte_code+36375>, 0x1003c7bba <exec_byte_code+36522>, 0x1003c7c4d 
<exec_byte_code+36669>, 0x1003c7ce0 <exec_byte_code+36816>, 0x1003c7d52 
<exec_byte_code+36930>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c4c2d 
<exec_byte_code+24349>, 0x1003c45e0 <exec_byte_code+22736>, 0x1003c3a09 
<exec_byte_code+19705>, 0x1003c46ce <exec_byte_code+22974>, 0x1003c4793 
<exec_byte_code+23171>, 0x1003c485c <exec_byte_code+23372>, 0x1003c4bde 
<exec_byte_code+24270>, 0x1003c4be3 <exec_byte_code+24275>, 0x1003c41cb 
<exec_byte_code+21691>, 0x1003c4ccd <exec_byte_code+24509>, 0x1003c4d66 
<exec_byte_code+24662>, 0x1003c4e30 <exec_byte_code+24864>, 0x1003c4e87 
<exec_byte_code+24951>, 0x1003c50da <exec_byte_code+25546>, 0x1003c5160 
<exec_byte_code+25680>, 0x1003c521b <exec_byte_code+25867>, 0x1003c5291 
<exec_byte_code+25985>, 0x1003c4572 <exec_byte_code+22626>, 0x1003c7dbf 
<exec_byte_code+37039>, 0x1003c7e7a <exec_byte_code+37226>, 0x1003c7ee7 
<exec_byte_code+37335>, 0x1003c7f54 <exec_byte_code+37444>, 0x1003c7fc1 
<exec_byte_code+37553>, 0x1003c802e <exec_byte_code+37662>, 0x1003c80c1 
<exec_byte_code+37809>, 0x1003c8154 <exec_byte_code+37956>, 0x1003c81e7 
<exec_byte_code+38103>, 0x1003c827a <exec_byte_code+38250>, 0x1003c84aa 
<exec_byte_code+38810>, 0x1003c853d <exec_byte_code+38957>, 0x1003c85d0 
<exec_byte_code+39104>, 0x1003c863d <exec_byte_code+39213>, 0x1003c86d0 
<exec_byte_code+39360>, 0x1003c8763 <exec_byte_code+39507>, 0x1003c87d0 
<exec_byte_code+39616>, 0x1003c883d <exec_byte_code+39725>, 0x1003c6cec 
<exec_byte_code+32732>, 0x1003c6d6f <exec_byte_code+32863>, 0x1003c88c0 
<exec_byte_code+39856>, 0x1003c8968 <exec_byte_code+40024>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c4925 <exec_byte_code+23573>, 0x1003c494e 
<exec_byte_code+23614>, 0x1003c49f0 <exec_byte_code+23776>, 0x1003c4a92 
<exec_byte_code+23938>, 0x1003c4b38 <exec_byte_code+24104>, 0x1003c5b19 
<exec_byte_code+28169>, 0x1003c6264 <exec_byte_code+30036>, 0x1003c6f71 
<exec_byte_code+33377>, 0x1003c8c62 <exec_byte_code+40786>, 0x1003c8cf3 
<exec_byte_code+40931>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8db0 <exec_byte_code+41120>, 0x1003c8e6f 
<exec_byte_code+41311>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c90f1 <exec_byte_code+41953> <repeats 64 times>}
        const_length = 44
        bytestr_length = 177
        vectorp = 0x100568088 <pure+196424>
        quitcounter = 1 '\001'
        stack_items = 7
        sa_avail = 16151
        sa_count = 23
        sa_must_free = false
        stack_base = 0x7fff5fbf7f50
        stack_lim = 0x7fff5fbf7f88
        top = 0x7fff5fbf7f58
        void_stack_lim = 0x7fff5fbf7f88
        bytestr_data = 0x7fff5fbf7f88 "\306\b!\204\022"
        pc = 0x7fff5fbf8014 "\210,\336\b!\210\016\"\204\256"
        count = 23
        result = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#720 0x000000010031ef6c in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=4, arg_vector=0x7fff5fbf9438) at eval.c:3030
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 19
        i = 4
        optional = true
        rest = false
        previous_optional_or_rest = false
#721 0x000000010031ca68 in Ffuncall (nargs=5, args=0x7fff5fbf9430) at 
eval.c:2749
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        numargs = 4
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 18
#722 0x000000010031dbe9 in call4 (fn=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, arg1=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, arg2=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, arg3=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, arg4=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
) at eval.c:2634
No locals.
#723 0x0000000100384b99 in Fload (file=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, noerror=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, nomessage=Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 
, nosuffix=Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 
, must_suffix=Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 
) at lread.c:1298
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        stream = 0x0
        fd = 5
        fd_index = 11
        count = 11
        found = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        efound = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        hist_file_name = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        newer = false
        compiled = false
        handler = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        safe_p = true
        fmode = 0x1004edfe5 "r"
        version = 0
        is_elc = 0
#724 0x000000010031e329 in funcall_subr (subr=0x100942600 <Sload>, numargs=3, 
args=0x7fff5fbf9d38) at eval.c:2834
        internal_argbuf = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
        internal_args = 0x7fff5fbf9b30
#725 0x000000010031ca18 in Ffuncall (nargs=4, args=0x7fff5fbf9d30) at 
eval.c:2747
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        numargs = 3
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 10
#726 0x00000001003c4413 in exec_byte_code (bytestr=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, vector=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, maxdepth=Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 
, args_template=Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 
, nargs=1, args=0x7fff5fbfb5d8) at bytecode.c:641
        op = 3
        type = CATCHER
        targets = {0x1003c8a10 <exec_byte_code+40192>, 0x1003c8a9b 
<exec_byte_code+40331>, 0x1003c8aa0 <exec_byte_code+40336>, 0x1003c8aa5 
<exec_byte_code+40341>, 0x1003c8aaa <exec_byte_code+40346>, 0x1003c8aaf 
<exec_byte_code+40351>, 0x1003c8b24 <exec_byte_code+40468>, 0x1003c8bad 
<exec_byte_code+40605>, 0x1003c377e <exec_byte_code+19054>, 0x1003c3783 
<exec_byte_code+19059>, 0x1003c3788 <exec_byte_code+19064>, 0x1003c378d 
<exec_byte_code+19069>, 0x1003c3792 <exec_byte_code+19074>, 0x1003c3797 
<exec_byte_code+19079>, 0x1003c37ab <exec_byte_code+19099>, 0x1003c3732 
<exec_byte_code+18978>, 0x1003c3e7a <exec_byte_code+20842>, 0x1003c3e7f 
<exec_byte_code+20847>, 0x1003c3e84 <exec_byte_code+20852>, 0x1003c3e89 
<exec_byte_code+20857>, 0x1003c3e8e <exec_byte_code+20862>, 0x1003c3e93 
<exec_byte_code+20867>, 0x1003c3ef3 <exec_byte_code+20963>, 0x1003c3ea7 
<exec_byte_code+20887>, 0x1003c42a3 <exec_byte_code+21907>, 0x1003c42a8 
<exec_byte_code+21912>, 0x1003c42ad <exec_byte_code+21917>, 0x1003c42b2 
<exec_byte_code+21922>, 0x1003c42b7 <exec_byte_code+21927>, 0x1003c42bc 
<exec_byte_code+21932>, 0x1003c4234 <exec_byte_code+21796>, 0x1003c4257 
<exec_byte_code+21831>, 0x1003c43a0 <exec_byte_code+22160>, 0x1003c43a5 
<exec_byte_code+22165>, 0x1003c43aa <exec_byte_code+22170>, 0x1003c43af 
<exec_byte_code+22175>, 0x1003c43b4 <exec_byte_code+22180>, 0x1003c43b9 
<exec_byte_code+22185>, 0x1003c4331 <exec_byte_code+22049>, 0x1003c4354 
<exec_byte_code+22084>, 0x1003c44d4 <exec_byte_code+22468>, 0x1003c44d9 
<exec_byte_code+22473>, 0x1003c44de <exec_byte_code+22478>, 0x1003c44e3 
<exec_byte_code+22483>, 0x1003c44e8 <exec_byte_code+22488>, 0x1003c44ed 
<exec_byte_code+22493>, 0x1003c4465 <exec_byte_code+22357>, 0x1003c4488 
<exec_byte_code+22392>, 0x1003c5089 <exec_byte_code+25465>, 0x1003c4f32 
<exec_byte_code+25122>, 0x1003c4f23 <exec_byte_code+25107>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c5340 <exec_byte_code+26160>, 0x1003c54f7 
<exec_byte_code+26599>, 0x1003c559c <exec_byte_code+26764>, 0x1003c5641 
<exec_byte_code+26929>, 0x1003c56e9 <exec_byte_code+27097>, 0x1003c3c00 
<exec_byte_code+20208>, 0x1003c3cc2 <exec_byte_code+20402>, 0x1003c57c1 
<exec_byte_code+27313>, 0x1003c3adc <exec_byte_code+19916>, 0x1003c3d55 
<exec_byte_code+20549>, 0x1003c5880 <exec_byte_code+27504>, 0x1003c5913 
<exec_byte_code+27651>, 0x1003c5980 <exec_byte_code+27760>, 0x1003c5a13 
<exec_byte_code+27907>, 0x1003c5a96 <exec_byte_code+28038>, 0x1003c5bd2 
<exec_byte_code+28354>, 0x1003c5c3f <exec_byte_code+28463>, 0x1003c5cd2 
<exec_byte_code+28610>, 0x1003c5d8d <exec_byte_code+28797>, 0x1003c5dfa 
<exec_byte_code+28906>, 0x1003c5e67 <exec_byte_code+29015>, 0x1003c5efa 
<exec_byte_code+29162>, 0x1003c5f8d <exec_byte_code+29309>, 0x1003c6020 
<exec_byte_code+29456>, 0x1003c60db <exec_byte_code+29643>, 0x1003c615e 
<exec_byte_code+29774>, 0x1003c61e1 <exec_byte_code+29905>, 0x1003c631d 
<exec_byte_code+30221>, 0x1003c63dd <exec_byte_code+30413>, 0x1003c649d 
<exec_byte_code+30605>, 0x1003c6736 <exec_byte_code+31270>, 0x1003c67ce 
<exec_byte_code+31422>, 0x1003c6866 <exec_byte_code+31574>, 0x1003c68fe 
<exec_byte_code+31726>, 0x1003c6996 <exec_byte_code+31878>, 0x1003c6a19 
<exec_byte_code+32009>, 0x1003c6ae0 <exec_byte_code+32208>, 0x1003c6b63 
<exec_byte_code+32339>, 0x1003c6be6 <exec_byte_code+32470>, 0x1003c6c69 
<exec_byte_code+32601>, 0x1003c6e02 <exec_byte_code+33010>, 0x1003c4d24 
<exec_byte_code+24596>, 0x1003c6e93 <exec_byte_code+33155>, 0x1003c6f00 
<exec_byte_code+33264>, 0x1003c702a <exec_byte_code+33562>, 0x1003c70b4 
<exec_byte_code+33700>, 0x1003c713e <exec_byte_code+33838>, 0x1003c71ab 
<exec_byte_code+33947>, 0x1003c721d <exec_byte_code+34061>, 0x1003c728f 
<exec_byte_code+34175>, 0x1003c7309 <exec_byte_code+34297>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c7399 <exec_byte_code+34441>, 0x1003c740b 
<exec_byte_code+34555>, 0x1003c747d <exec_byte_code+34669>, 0x1003c74ef 
<exec_byte_code+34783>, 0x1003c7561 <exec_byte_code+34897>, 0x1003c75d3 
<exec_byte_code+35011>, 0x1003c4d29 <exec_byte_code+24601>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c7640 <exec_byte_code+35120>, 0x1003c76cc 
<exec_byte_code+35260>, 0x1003c7739 <exec_byte_code+35369>, 0x1003c77a6 
<exec_byte_code+35478>, 0x1003c7839 <exec_byte_code+35625>, 0x1003c78cc 
<exec_byte_code+35772>, 0x1003c7939 <exec_byte_code+35881>, 0x1003c7b27 
<exec_byte_code+36375>, 0x1003c7bba <exec_byte_code+36522>, 0x1003c7c4d 
<exec_byte_code+36669>, 0x1003c7ce0 <exec_byte_code+36816>, 0x1003c7d52 
<exec_byte_code+36930>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c4c2d 
<exec_byte_code+24349>, 0x1003c45e0 <exec_byte_code+22736>, 0x1003c3a09 
<exec_byte_code+19705>, 0x1003c46ce <exec_byte_code+22974>, 0x1003c4793 
<exec_byte_code+23171>, 0x1003c485c <exec_byte_code+23372>, 0x1003c4bde 
<exec_byte_code+24270>, 0x1003c4be3 <exec_byte_code+24275>, 0x1003c41cb 
<exec_byte_code+21691>, 0x1003c4ccd <exec_byte_code+24509>, 0x1003c4d66 
<exec_byte_code+24662>, 0x1003c4e30 <exec_byte_code+24864>, 0x1003c4e87 
<exec_byte_code+24951>, 0x1003c50da <exec_byte_code+25546>, 0x1003c5160 
<exec_byte_code+25680>, 0x1003c521b <exec_byte_code+25867>, 0x1003c5291 
<exec_byte_code+25985>, 0x1003c4572 <exec_byte_code+22626>, 0x1003c7dbf 
<exec_byte_code+37039>, 0x1003c7e7a <exec_byte_code+37226>, 0x1003c7ee7 
<exec_byte_code+37335>, 0x1003c7f54 <exec_byte_code+37444>, 0x1003c7fc1 
<exec_byte_code+37553>, 0x1003c802e <exec_byte_code+37662>, 0x1003c80c1 
<exec_byte_code+37809>, 0x1003c8154 <exec_byte_code+37956>, 0x1003c81e7 
<exec_byte_code+38103>, 0x1003c827a <exec_byte_code+38250>, 0x1003c84aa 
<exec_byte_code+38810>, 0x1003c853d <exec_byte_code+38957>, 0x1003c85d0 
<exec_byte_code+39104>, 0x1003c863d <exec_byte_code+39213>, 0x1003c86d0 
<exec_byte_code+39360>, 0x1003c8763 <exec_byte_code+39507>, 0x1003c87d0 
<exec_byte_code+39616>, 0x1003c883d <exec_byte_code+39725>, 0x1003c6cec 
<exec_byte_code+32732>, 0x1003c6d6f <exec_byte_code+32863>, 0x1003c88c0 
<exec_byte_code+39856>, 0x1003c8968 <exec_byte_code+40024>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c4925 <exec_byte_code+23573>, 0x1003c494e 
<exec_byte_code+23614>, 0x1003c49f0 <exec_byte_code+23776>, 0x1003c4a92 
<exec_byte_code+23938>, 0x1003c4b38 <exec_byte_code+24104>, 0x1003c5b19 
<exec_byte_code+28169>, 0x1003c6264 <exec_byte_code+30036>, 0x1003c6f71 
<exec_byte_code+33377>, 0x1003c8c62 <exec_byte_code+40786>, 0x1003c8cf3 
<exec_byte_code+40931>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8db0 <exec_byte_code+41120>, 0x1003c8e6f 
<exec_byte_code+41311>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c90f1 <exec_byte_code+41953> <repeats 64 times>}
        const_length = 106
        bytestr_length = 1176
        vectorp = 0x100679c40 <pure+1317632>
        quitcounter = 103 'g'
        stack_items = 24
        sa_avail = 15016
        sa_count = 8
        sa_must_free = false
        stack_base = 0x7fff5fbf9cb0
        stack_lim = 0x7fff5fbf9d70
        top = 0x7fff5fbf9d30
        void_stack_lim = 0x7fff5fbf9d70
        bytestr_data = 0x7fff5fbf9d70 "\306 \210\b\203\021"
        pc = 0x7fff5fbf9f78 
"\266\003\202d\003\016A-\002\353\002\206\036\002\n\211A\022\242!\352\001!\356\001\313ډ$\266\003\202d\003\016A\360\232\203V\002\332\026B\001\206@\002\n\211A\022\242\262\n\006\t;\204L\002\333\361!\210\362\353\006\v!!\210\202d\003\016A\363\232\203d\002\364\332!\210\202d\003\016A\365\232\203r\002\366\367!\210\202d\003\322\370\016A\"\203\204\002\005\371\016A!\240\210\202d\003\322\372\016A\"\203\243\002\005\371\326\327\016A\"!\240\210\004\371\326\373\016A\"!\240\210\202d\003\335\003\r\"\211\262\v\203\267\002\006\tA@\n\233\022\202d\003\335\003\016@\"\211\262\v\203\314\002\006\tA@\n\233\022\202d\003\016",
 <incomplete sequence \374\235>...
        count = 8
        result = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#727 0x000000010031e8ca in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=1, arg_vector=0x7fff5fbfb5d0) at eval.c:2948
        size = 5
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 8
        i = 140734799787120
        optional = false
        rest = false
        previous_optional_or_rest = false
#728 0x000000010031ca68 in Ffuncall (nargs=2, args=0x7fff5fbfb5c8) at 
eval.c:2749
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        numargs = 1
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 7
#729 0x00000001003c4413 in exec_byte_code (bytestr=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, vector=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, maxdepth=Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 
, args_template=Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 
, nargs=0, args=0x7fff5fbfd118) at bytecode.c:641
        op = 1
        type = CONDITION_CASE
        targets = {0x1003c8a10 <exec_byte_code+40192>, 0x1003c8a9b 
<exec_byte_code+40331>, 0x1003c8aa0 <exec_byte_code+40336>, 0x1003c8aa5 
<exec_byte_code+40341>, 0x1003c8aaa <exec_byte_code+40346>, 0x1003c8aaf 
<exec_byte_code+40351>, 0x1003c8b24 <exec_byte_code+40468>, 0x1003c8bad 
<exec_byte_code+40605>, 0x1003c377e <exec_byte_code+19054>, 0x1003c3783 
<exec_byte_code+19059>, 0x1003c3788 <exec_byte_code+19064>, 0x1003c378d 
<exec_byte_code+19069>, 0x1003c3792 <exec_byte_code+19074>, 0x1003c3797 
<exec_byte_code+19079>, 0x1003c37ab <exec_byte_code+19099>, 0x1003c3732 
<exec_byte_code+18978>, 0x1003c3e7a <exec_byte_code+20842>, 0x1003c3e7f 
<exec_byte_code+20847>, 0x1003c3e84 <exec_byte_code+20852>, 0x1003c3e89 
<exec_byte_code+20857>, 0x1003c3e8e <exec_byte_code+20862>, 0x1003c3e93 
<exec_byte_code+20867>, 0x1003c3ef3 <exec_byte_code+20963>, 0x1003c3ea7 
<exec_byte_code+20887>, 0x1003c42a3 <exec_byte_code+21907>, 0x1003c42a8 
<exec_byte_code+21912>, 0x1003c42ad <exec_byte_code+21917>, 0x1003c42b2 
<exec_byte_code+21922>, 0x1003c42b7 <exec_byte_code+21927>, 0x1003c42bc 
<exec_byte_code+21932>, 0x1003c4234 <exec_byte_code+21796>, 0x1003c4257 
<exec_byte_code+21831>, 0x1003c43a0 <exec_byte_code+22160>, 0x1003c43a5 
<exec_byte_code+22165>, 0x1003c43aa <exec_byte_code+22170>, 0x1003c43af 
<exec_byte_code+22175>, 0x1003c43b4 <exec_byte_code+22180>, 0x1003c43b9 
<exec_byte_code+22185>, 0x1003c4331 <exec_byte_code+22049>, 0x1003c4354 
<exec_byte_code+22084>, 0x1003c44d4 <exec_byte_code+22468>, 0x1003c44d9 
<exec_byte_code+22473>, 0x1003c44de <exec_byte_code+22478>, 0x1003c44e3 
<exec_byte_code+22483>, 0x1003c44e8 <exec_byte_code+22488>, 0x1003c44ed 
<exec_byte_code+22493>, 0x1003c4465 <exec_byte_code+22357>, 0x1003c4488 
<exec_byte_code+22392>, 0x1003c5089 <exec_byte_code+25465>, 0x1003c4f32 
<exec_byte_code+25122>, 0x1003c4f23 <exec_byte_code+25107>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c5340 <exec_byte_code+26160>, 0x1003c54f7 
<exec_byte_code+26599>, 0x1003c559c <exec_byte_code+26764>, 0x1003c5641 
<exec_byte_code+26929>, 0x1003c56e9 <exec_byte_code+27097>, 0x1003c3c00 
<exec_byte_code+20208>, 0x1003c3cc2 <exec_byte_code+20402>, 0x1003c57c1 
<exec_byte_code+27313>, 0x1003c3adc <exec_byte_code+19916>, 0x1003c3d55 
<exec_byte_code+20549>, 0x1003c5880 <exec_byte_code+27504>, 0x1003c5913 
<exec_byte_code+27651>, 0x1003c5980 <exec_byte_code+27760>, 0x1003c5a13 
<exec_byte_code+27907>, 0x1003c5a96 <exec_byte_code+28038>, 0x1003c5bd2 
<exec_byte_code+28354>, 0x1003c5c3f <exec_byte_code+28463>, 0x1003c5cd2 
<exec_byte_code+28610>, 0x1003c5d8d <exec_byte_code+28797>, 0x1003c5dfa 
<exec_byte_code+28906>, 0x1003c5e67 <exec_byte_code+29015>, 0x1003c5efa 
<exec_byte_code+29162>, 0x1003c5f8d <exec_byte_code+29309>, 0x1003c6020 
<exec_byte_code+29456>, 0x1003c60db <exec_byte_code+29643>, 0x1003c615e 
<exec_byte_code+29774>, 0x1003c61e1 <exec_byte_code+29905>, 0x1003c631d 
<exec_byte_code+30221>, 0x1003c63dd <exec_byte_code+30413>, 0x1003c649d 
<exec_byte_code+30605>, 0x1003c6736 <exec_byte_code+31270>, 0x1003c67ce 
<exec_byte_code+31422>, 0x1003c6866 <exec_byte_code+31574>, 0x1003c68fe 
<exec_byte_code+31726>, 0x1003c6996 <exec_byte_code+31878>, 0x1003c6a19 
<exec_byte_code+32009>, 0x1003c6ae0 <exec_byte_code+32208>, 0x1003c6b63 
<exec_byte_code+32339>, 0x1003c6be6 <exec_byte_code+32470>, 0x1003c6c69 
<exec_byte_code+32601>, 0x1003c6e02 <exec_byte_code+33010>, 0x1003c4d24 
<exec_byte_code+24596>, 0x1003c6e93 <exec_byte_code+33155>, 0x1003c6f00 
<exec_byte_code+33264>, 0x1003c702a <exec_byte_code+33562>, 0x1003c70b4 
<exec_byte_code+33700>, 0x1003c713e <exec_byte_code+33838>, 0x1003c71ab 
<exec_byte_code+33947>, 0x1003c721d <exec_byte_code+34061>, 0x1003c728f 
<exec_byte_code+34175>, 0x1003c7309 <exec_byte_code+34297>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c7399 <exec_byte_code+34441>, 0x1003c740b 
<exec_byte_code+34555>, 0x1003c747d <exec_byte_code+34669>, 0x1003c74ef 
<exec_byte_code+34783>, 0x1003c7561 <exec_byte_code+34897>, 0x1003c75d3 
<exec_byte_code+35011>, 0x1003c4d29 <exec_byte_code+24601>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c7640 <exec_byte_code+35120>, 0x1003c76cc 
<exec_byte_code+35260>, 0x1003c7739 <exec_byte_code+35369>, 0x1003c77a6 
<exec_byte_code+35478>, 0x1003c7839 <exec_byte_code+35625>, 0x1003c78cc 
<exec_byte_code+35772>, 0x1003c7939 <exec_byte_code+35881>, 0x1003c7b27 
<exec_byte_code+36375>, 0x1003c7bba <exec_byte_code+36522>, 0x1003c7c4d 
<exec_byte_code+36669>, 0x1003c7ce0 <exec_byte_code+36816>, 0x1003c7d52 
<exec_byte_code+36930>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c4c2d 
<exec_byte_code+24349>, 0x1003c45e0 <exec_byte_code+22736>, 0x1003c3a09 
<exec_byte_code+19705>, 0x1003c46ce <exec_byte_code+22974>, 0x1003c4793 
<exec_byte_code+23171>, 0x1003c485c <exec_byte_code+23372>, 0x1003c4bde 
<exec_byte_code+24270>, 0x1003c4be3 <exec_byte_code+24275>, 0x1003c41cb 
<exec_byte_code+21691>, 0x1003c4ccd <exec_byte_code+24509>, 0x1003c4d66 
<exec_byte_code+24662>, 0x1003c4e30 <exec_byte_code+24864>, 0x1003c4e87 
<exec_byte_code+24951>, 0x1003c50da <exec_byte_code+25546>, 0x1003c5160 
<exec_byte_code+25680>, 0x1003c521b <exec_byte_code+25867>, 0x1003c5291 
<exec_byte_code+25985>, 0x1003c4572 <exec_byte_code+22626>, 0x1003c7dbf 
<exec_byte_code+37039>, 0x1003c7e7a <exec_byte_code+37226>, 0x1003c7ee7 
<exec_byte_code+37335>, 0x1003c7f54 <exec_byte_code+37444>, 0x1003c7fc1 
<exec_byte_code+37553>, 0x1003c802e <exec_byte_code+37662>, 0x1003c80c1 
<exec_byte_code+37809>, 0x1003c8154 <exec_byte_code+37956>, 0x1003c81e7 
<exec_byte_code+38103>, 0x1003c827a <exec_byte_code+38250>, 0x1003c84aa 
<exec_byte_code+38810>, 0x1003c853d <exec_byte_code+38957>, 0x1003c85d0 
<exec_byte_code+39104>, 0x1003c863d <exec_byte_code+39213>, 0x1003c86d0 
<exec_byte_code+39360>, 0x1003c8763 <exec_byte_code+39507>, 0x1003c87d0 
<exec_byte_code+39616>, 0x1003c883d <exec_byte_code+39725>, 0x1003c6cec 
<exec_byte_code+32732>, 0x1003c6d6f <exec_byte_code+32863>, 0x1003c88c0 
<exec_byte_code+39856>, 0x1003c8968 <exec_byte_code+40024>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c4925 <exec_byte_code+23573>, 0x1003c494e 
<exec_byte_code+23614>, 0x1003c49f0 <exec_byte_code+23776>, 0x1003c4a92 
<exec_byte_code+23938>, 0x1003c4b38 <exec_byte_code+24104>, 0x1003c5b19 
<exec_byte_code+28169>, 0x1003c6264 <exec_byte_code+30036>, 0x1003c6f71 
<exec_byte_code+33377>, 0x1003c8c62 <exec_byte_code+40786>, 0x1003c8cf3 
<exec_byte_code+40931>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8db0 <exec_byte_code+41120>, 0x1003c8e6f 
<exec_byte_code+41311>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c90f1 <exec_byte_code+41953> <repeats 64 times>}
        const_length = 214
        bytestr_length = 1759
        vectorp = 0x100674230 <pure+1294576>
        quitcounter = 7 '\a'
        stack_items = 22
        sa_avail = 14449
        sa_count = 7
        sa_must_free = false
        stack_base = 0x7fff5fbfb5c0
        stack_lim = 0x7fff5fbfb670
        top = 0x7fff5fbfb5c8
        void_stack_lim = 0x7fff5fbfb670
        bytestr_data = 0x7fff5fbfb670 "\306 
\020\307\021\n\023\307\024\310\311!\211\307=\204\060"
        pc = 0x7fff5fbfbc9e 
"\210\307\016@\211\203x\006\211@\002\204q\006\211;\203q\006\201", <incomplete 
sequence \315>
        count = 7
        result = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#730 0x000000010031e8ca in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=0, arg_vector=0x7fff5fbfd118) at eval.c:2948
        size = 5
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 7
        i = 140734799794096
        optional = false
        rest = false
        previous_optional_or_rest = false
#731 0x000000010031ca68 in Ffuncall (nargs=1, args=0x7fff5fbfd110) at 
eval.c:2749
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        numargs = 0
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 6
#732 0x00000001003c4413 in exec_byte_code (bytestr=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, vector=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, maxdepth=Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 
, args_template=Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 
, nargs=0, args=0x7fff5fbfe5c0) at bytecode.c:641
        op = 0
        type = (unknown: 320)
        targets = {0x1003c8a10 <exec_byte_code+40192>, 0x1003c8a9b 
<exec_byte_code+40331>, 0x1003c8aa0 <exec_byte_code+40336>, 0x1003c8aa5 
<exec_byte_code+40341>, 0x1003c8aaa <exec_byte_code+40346>, 0x1003c8aaf 
<exec_byte_code+40351>, 0x1003c8b24 <exec_byte_code+40468>, 0x1003c8bad 
<exec_byte_code+40605>, 0x1003c377e <exec_byte_code+19054>, 0x1003c3783 
<exec_byte_code+19059>, 0x1003c3788 <exec_byte_code+19064>, 0x1003c378d 
<exec_byte_code+19069>, 0x1003c3792 <exec_byte_code+19074>, 0x1003c3797 
<exec_byte_code+19079>, 0x1003c37ab <exec_byte_code+19099>, 0x1003c3732 
<exec_byte_code+18978>, 0x1003c3e7a <exec_byte_code+20842>, 0x1003c3e7f 
<exec_byte_code+20847>, 0x1003c3e84 <exec_byte_code+20852>, 0x1003c3e89 
<exec_byte_code+20857>, 0x1003c3e8e <exec_byte_code+20862>, 0x1003c3e93 
<exec_byte_code+20867>, 0x1003c3ef3 <exec_byte_code+20963>, 0x1003c3ea7 
<exec_byte_code+20887>, 0x1003c42a3 <exec_byte_code+21907>, 0x1003c42a8 
<exec_byte_code+21912>, 0x1003c42ad <exec_byte_code+21917>, 0x1003c42b2 
<exec_byte_code+21922>, 0x1003c42b7 <exec_byte_code+21927>, 0x1003c42bc 
<exec_byte_code+21932>, 0x1003c4234 <exec_byte_code+21796>, 0x1003c4257 
<exec_byte_code+21831>, 0x1003c43a0 <exec_byte_code+22160>, 0x1003c43a5 
<exec_byte_code+22165>, 0x1003c43aa <exec_byte_code+22170>, 0x1003c43af 
<exec_byte_code+22175>, 0x1003c43b4 <exec_byte_code+22180>, 0x1003c43b9 
<exec_byte_code+22185>, 0x1003c4331 <exec_byte_code+22049>, 0x1003c4354 
<exec_byte_code+22084>, 0x1003c44d4 <exec_byte_code+22468>, 0x1003c44d9 
<exec_byte_code+22473>, 0x1003c44de <exec_byte_code+22478>, 0x1003c44e3 
<exec_byte_code+22483>, 0x1003c44e8 <exec_byte_code+22488>, 0x1003c44ed 
<exec_byte_code+22493>, 0x1003c4465 <exec_byte_code+22357>, 0x1003c4488 
<exec_byte_code+22392>, 0x1003c5089 <exec_byte_code+25465>, 0x1003c4f32 
<exec_byte_code+25122>, 0x1003c4f23 <exec_byte_code+25107>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c5340 <exec_byte_code+26160>, 0x1003c54f7 
<exec_byte_code+26599>, 0x1003c559c <exec_byte_code+26764>, 0x1003c5641 
<exec_byte_code+26929>, 0x1003c56e9 <exec_byte_code+27097>, 0x1003c3c00 
<exec_byte_code+20208>, 0x1003c3cc2 <exec_byte_code+20402>, 0x1003c57c1 
<exec_byte_code+27313>, 0x1003c3adc <exec_byte_code+19916>, 0x1003c3d55 
<exec_byte_code+20549>, 0x1003c5880 <exec_byte_code+27504>, 0x1003c5913 
<exec_byte_code+27651>, 0x1003c5980 <exec_byte_code+27760>, 0x1003c5a13 
<exec_byte_code+27907>, 0x1003c5a96 <exec_byte_code+28038>, 0x1003c5bd2 
<exec_byte_code+28354>, 0x1003c5c3f <exec_byte_code+28463>, 0x1003c5cd2 
<exec_byte_code+28610>, 0x1003c5d8d <exec_byte_code+28797>, 0x1003c5dfa 
<exec_byte_code+28906>, 0x1003c5e67 <exec_byte_code+29015>, 0x1003c5efa 
<exec_byte_code+29162>, 0x1003c5f8d <exec_byte_code+29309>, 0x1003c6020 
<exec_byte_code+29456>, 0x1003c60db <exec_byte_code+29643>, 0x1003c615e 
<exec_byte_code+29774>, 0x1003c61e1 <exec_byte_code+29905>, 0x1003c631d 
<exec_byte_code+30221>, 0x1003c63dd <exec_byte_code+30413>, 0x1003c649d 
<exec_byte_code+30605>, 0x1003c6736 <exec_byte_code+31270>, 0x1003c67ce 
<exec_byte_code+31422>, 0x1003c6866 <exec_byte_code+31574>, 0x1003c68fe 
<exec_byte_code+31726>, 0x1003c6996 <exec_byte_code+31878>, 0x1003c6a19 
<exec_byte_code+32009>, 0x1003c6ae0 <exec_byte_code+32208>, 0x1003c6b63 
<exec_byte_code+32339>, 0x1003c6be6 <exec_byte_code+32470>, 0x1003c6c69 
<exec_byte_code+32601>, 0x1003c6e02 <exec_byte_code+33010>, 0x1003c4d24 
<exec_byte_code+24596>, 0x1003c6e93 <exec_byte_code+33155>, 0x1003c6f00 
<exec_byte_code+33264>, 0x1003c702a <exec_byte_code+33562>, 0x1003c70b4 
<exec_byte_code+33700>, 0x1003c713e <exec_byte_code+33838>, 0x1003c71ab 
<exec_byte_code+33947>, 0x1003c721d <exec_byte_code+34061>, 0x1003c728f 
<exec_byte_code+34175>, 0x1003c7309 <exec_byte_code+34297>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c7399 <exec_byte_code+34441>, 0x1003c740b 
<exec_byte_code+34555>, 0x1003c747d <exec_byte_code+34669>, 0x1003c74ef 
<exec_byte_code+34783>, 0x1003c7561 <exec_byte_code+34897>, 0x1003c75d3 
<exec_byte_code+35011>, 0x1003c4d29 <exec_byte_code+24601>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c7640 <exec_byte_code+35120>, 0x1003c76cc 
<exec_byte_code+35260>, 0x1003c7739 <exec_byte_code+35369>, 0x1003c77a6 
<exec_byte_code+35478>, 0x1003c7839 <exec_byte_code+35625>, 0x1003c78cc 
<exec_byte_code+35772>, 0x1003c7939 <exec_byte_code+35881>, 0x1003c7b27 
<exec_byte_code+36375>, 0x1003c7bba <exec_byte_code+36522>, 0x1003c7c4d 
<exec_byte_code+36669>, 0x1003c7ce0 <exec_byte_code+36816>, 0x1003c7d52 
<exec_byte_code+36930>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c4c2d 
<exec_byte_code+24349>, 0x1003c45e0 <exec_byte_code+22736>, 0x1003c3a09 
<exec_byte_code+19705>, 0x1003c46ce <exec_byte_code+22974>, 0x1003c4793 
<exec_byte_code+23171>, 0x1003c485c <exec_byte_code+23372>, 0x1003c4bde 
<exec_byte_code+24270>, 0x1003c4be3 <exec_byte_code+24275>, 0x1003c41cb 
<exec_byte_code+21691>, 0x1003c4ccd <exec_byte_code+24509>, 0x1003c4d66 
<exec_byte_code+24662>, 0x1003c4e30 <exec_byte_code+24864>, 0x1003c4e87 
<exec_byte_code+24951>, 0x1003c50da <exec_byte_code+25546>, 0x1003c5160 
<exec_byte_code+25680>, 0x1003c521b <exec_byte_code+25867>, 0x1003c5291 
<exec_byte_code+25985>, 0x1003c4572 <exec_byte_code+22626>, 0x1003c7dbf 
<exec_byte_code+37039>, 0x1003c7e7a <exec_byte_code+37226>, 0x1003c7ee7 
<exec_byte_code+37335>, 0x1003c7f54 <exec_byte_code+37444>, 0x1003c7fc1 
<exec_byte_code+37553>, 0x1003c802e <exec_byte_code+37662>, 0x1003c80c1 
<exec_byte_code+37809>, 0x1003c8154 <exec_byte_code+37956>, 0x1003c81e7 
<exec_byte_code+38103>, 0x1003c827a <exec_byte_code+38250>, 0x1003c84aa 
<exec_byte_code+38810>, 0x1003c853d <exec_byte_code+38957>, 0x1003c85d0 
<exec_byte_code+39104>, 0x1003c863d <exec_byte_code+39213>, 0x1003c86d0 
<exec_byte_code+39360>, 0x1003c8763 <exec_byte_code+39507>, 0x1003c87d0 
<exec_byte_code+39616>, 0x1003c883d <exec_byte_code+39725>, 0x1003c6cec 
<exec_byte_code+32732>, 0x1003c6d6f <exec_byte_code+32863>, 0x1003c88c0 
<exec_byte_code+39856>, 0x1003c8968 <exec_byte_code+40024>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c4925 <exec_byte_code+23573>, 0x1003c494e 
<exec_byte_code+23614>, 0x1003c49f0 <exec_byte_code+23776>, 0x1003c4a92 
<exec_byte_code+23938>, 0x1003c4b38 <exec_byte_code+24104>, 0x1003c5b19 
<exec_byte_code+28169>, 0x1003c6264 <exec_byte_code+30036>, 0x1003c6f71 
<exec_byte_code+33377>, 0x1003c8c62 <exec_byte_code+40786>, 0x1003c8cf3 
<exec_byte_code+40931>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8db0 <exec_byte_code+41120>, 0x1003c8e6f 
<exec_byte_code+41311>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c8a15 <exec_byte_code+40197>, 0x1003c8a15 
<exec_byte_code+40197>, 0x1003c90f1 <exec_byte_code+41953> <repeats 64 times>}
        const_length = 77
        bytestr_length = 443
        vectorp = 0x100673200 <pure+1290432>
        quitcounter = 39 '\''
        stack_items = 13
        sa_avail = 15837
        sa_count = 5
        sa_must_free = false
        stack_base = 0x7fff5fbfd100
        stack_lim = 0x7fff5fbfd168
        top = 0x7fff5fbfd110
        void_stack_lim = 0x7fff5fbfd168
        bytestr_data = 0x7fff5fbfd168 "\b\203\b"
        pc = 0x7fff5fbfd2dc "\210)\210\375\376\377\"\210\201H"
        count = 5
        result = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#733 0x000000010031e8ca in funcall_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, nargs=0, arg_vector=0x7fff5fbfe5c0) at eval.c:2948
        size = 5
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        syms_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        next = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        lexenv = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 5
        i = 140734799799728
        optional = false
        rest = false
        previous_optional_or_rest = false
#734 0x0000000100312bd7 in apply_lambda (fun=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, args=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
, count=4) at eval.c:2884
        args_left = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        i = 0
        numargs = 0
        arg_vector = 0x7fff5fbfe5c0
        tem = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        sa_avail = 16384
        sa_count = 5
        sa_must_free = false
#735 0x0000000100303c14 in eval_sub (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:2268
        fun = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        original_fun = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        original_args = Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 

        funcar = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        count = 4
        argvals = {Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
, Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no 
attribute 'value': 
}
#736 0x000000010030e864 in Feval (form=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, lexical=Python Exception <type 'exceptions.AttributeError'> 'NoneType' object 
has no attribute 'value': 
) at eval.c:2045
        count = 3
#737 0x00000001001f1daa in top_level_2 () at keyboard.c:1122
No locals.
#738 0x000000010030d01f in internal_condition_case (bfun=0x1001f1d80 
<top_level_2>, handlers=Python Exception <type 'exceptions.AttributeError'> 
'NoneType' object has no attribute 'value': 
, hfun=0x1001f1ac0 <cmd_error>) at eval.c:1326
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        c = 0x10190a9f0
#739 0x00000001001f1a4e in top_level_1 (ignore=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at keyboard.c:1130
No locals.
#740 0x000000010030c208 in internal_catch (tag=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
, func=0x1001f19f0 <top_level_1>, arg=Python Exception <type 
'exceptions.AttributeError'> 'NoneType' object has no attribute 'value': 
) at eval.c:1091
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

        c = 0x10190b6b0
#741 0x00000001001d32e1 in command_loop () at keyboard.c:1091
No locals.
#742 0x00000001001d3124 in recursive_edit_1 () at keyboard.c:698
        count = 1
        val = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#743 0x00000001001d3555 in Frecursive_edit () at keyboard.c:769
        count = 0
        buffer = Python Exception <type 'exceptions.AttributeError'> 'NoneType' 
object has no attribute 'value': 

#744 0x00000001001d0bf6 in main (argc=5, argv=0x7fff5fbff888) at emacs.c:1689
        stack_bottom_variable = 0 '\000'
        do_initial_setlocale = true
        dumping = false
        skip_args = 1
        no_loadup = false
        junk = 0x0
        dname_arg = 0x0
        dname_arg2 = 
"\210\370\277_\377\177\000\000\000\000\000\000\001\000\000\000\000\000\000\000\005\000\000\000
 \005\000\a\001\000\000\000\300\004\000\a\001", '\000' <repeats 42 times>
        ch_to_dir = 0x0
        original_pwd = 0x0
        disable_aslr = false
        rlim = {
          rlim_cur = 10022912, 
          rlim_max = 67104768
        }
        sockfd = -1

Lisp Backtrace:
"mapbacktrace" (0x5fb6ddc0)
0x39eae30 Lisp type 3
"funcall" (0x5fb6e150)
"if" (0x5fb6ef60)
"recurse" (0x5fb6f200)
"if" (0x5fb70510)
"recurse" (0x5fb707b0)
"if" (0x5fb71ac0)
"recurse" (0x5fb71d60)
"if" (0x5fb73070)
"recurse" (0x5fb73310)
"if" (0x5fb74620)
"recurse" (0x5fb748c0)
"if" (0x5fb75bd0)
"recurse" (0x5fb75e70)
"if" (0x5fb77180)
"recurse" (0x5fb77420)
"if" (0x5fb78730)
"recurse" (0x5fb789d0)
"if" (0x5fb79ce0)
"recurse" (0x5fb79f80)
"if" (0x5fb7b290)
"recurse" (0x5fb7b530)
"if" (0x5fb7c840)
"recurse" (0x5fb7cae0)
"if" (0x5fb7ddf0)
"recurse" (0x5fb7e090)
"if" (0x5fb7f3a0)
"recurse" (0x5fb7f640)
"if" (0x5fb80950)
"recurse" (0x5fb80bf0)
"if" (0x5fb81f00)
"recurse" (0x5fb821a0)
"if" (0x5fb834b0)
"recurse" (0x5fb83750)
"if" (0x5fb84a60)
"recurse" (0x5fb84d00)
"if" (0x5fb86010)
"recurse" (0x5fb862b0)
"if" (0x5fb875c0)
"recurse" (0x5fb87860)
"if" (0x5fb88b70)
"recurse" (0x5fb88e10)
"if" (0x5fb8a120)
"recurse" (0x5fb8a3c0)
"if" (0x5fb8b6d0)
"recurse" (0x5fb8b970)
"if" (0x5fb8cc80)
"recurse" (0x5fb8cf20)
"if" (0x5fb8e230)
"recurse" (0x5fb8e4d0)
"if" (0x5fb8f7e0)
"recurse" (0x5fb8fa80)
"if" (0x5fb90d90)
"recurse" (0x5fb91030)
"if" (0x5fb92340)
"recurse" (0x5fb925e0)
"if" (0x5fb938f0)
"recurse" (0x5fb93b90)
"if" (0x5fb94ea0)
"recurse" (0x5fb95140)
"if" (0x5fb96450)
"recurse" (0x5fb966f0)
"if" (0x5fb97a00)
"recurse" (0x5fb97ca0)
"if" (0x5fb98fb0)
"recurse" (0x5fb99250)
"if" (0x5fb9a560)
"recurse" (0x5fb9a800)
"if" (0x5fb9bb10)
"recurse" (0x5fb9bdb0)
"if" (0x5fb9d0c0)
"recurse" (0x5fb9d360)
"if" (0x5fb9e670)
"recurse" (0x5fb9e910)
"if" (0x5fb9fc20)
"recurse" (0x5fb9fec0)
"if" (0x5fba11d0)
"recurse" (0x5fba1470)
"if" (0x5fba2780)
"recurse" (0x5fba2a20)
"if" (0x5fba3d30)
"recurse" (0x5fba3fd0)
"if" (0x5fba52e0)
"recurse" (0x5fba5580)
"if" (0x5fba6890)
"recurse" (0x5fba6b30)
"if" (0x5fba7e40)
"recurse" (0x5fba80e0)
"if" (0x5fba93f0)
"recurse" (0x5fba9690)
"if" (0x5fbaa9a0)
"recurse" (0x5fbaac40)
"if" (0x5fbabf50)
"recurse" (0x5fbac1f0)
"if" (0x5fbad500)
"recurse" (0x5fbad7a0)
"if" (0x5fbaeab0)
"recurse" (0x5fbaed50)
"if" (0x5fbb0060)
"recurse" (0x5fbb0300)
"if" (0x5fbb1610)
"recurse" (0x5fbb18b0)
"if" (0x5fbb2bc0)
"recurse" (0x5fbb2e60)
"if" (0x5fbb4170)
"recurse" (0x5fbb4410)
"if" (0x5fbb5720)
"recurse" (0x5fbb59c0)
"if" (0x5fbb6cd0)
"recurse" (0x5fbb6f70)
"if" (0x5fbb8280)
"recurse" (0x5fbb8520)
"if" (0x5fbb9830)
"recurse" (0x5fbb9ad0)
"if" (0x5fbbade0)
"recurse" (0x5fbbb080)
"if" (0x5fbbc390)
"recurse" (0x5fbbc630)
"if" (0x5fbbd940)
"recurse" (0x5fbbdbe0)
"if" (0x5fbbeef0)
"recurse" (0x5fbbf190)
"if" (0x5fbc04a0)
"recurse" (0x5fbc0740)
"if" (0x5fbc1a50)
"recurse" (0x5fbc1cf0)
"if" (0x5fbc3000)
"recurse" (0x5fbc32a0)
"if" (0x5fbc45b0)
"recurse" (0x5fbc4850)
"if" (0x5fbc5b60)
"recurse" (0x5fbc5e00)
"if" (0x5fbc7110)
"recurse" (0x5fbc73b0)
"if" (0x5fbc86c0)
"recurse" (0x5fbc8960)
"if" (0x5fbc9c70)
"recurse" (0x5fbc9f10)
"if" (0x5fbcb220)
"recurse" (0x5fbcb4c0)
"if" (0x5fbcc7d0)
"recurse" (0x5fbcca70)
"if" (0x5fbcdd80)
"recurse" (0x5fbce020)
"if" (0x5fbcf330)
"recurse" (0x5fbcf5d0)
"if" (0x5fbd08e0)
"recurse" (0x5fbd0b80)
"if" (0x5fbd1e90)
"recurse" (0x5fbd2130)
"if" (0x5fbd3440)
"recurse" (0x5fbd36e0)
"if" (0x5fbd49f0)
"recurse" (0x5fbd4c90)
"if" (0x5fbd5fa0)
"recurse" (0x5fbd6240)
"if" (0x5fbd7550)
"recurse" (0x5fbd77f0)
"if" (0x5fbd8b00)
"recurse" (0x5fbd8da0)
"if" (0x5fbda0b0)
"recurse" (0x5fbda350)
"if" (0x5fbdb660)
"recurse" (0x5fbdb900)
"if" (0x5fbdcc10)
"recurse" (0x5fbdceb0)
"if" (0x5fbde1c0)
"recurse" (0x5fbde460)
"if" (0x5fbdf770)
"recurse" (0x5fbdfa10)
"if" (0x5fbe0d20)
"recurse" (0x5fbe0fc0)
"if" (0x5fbe22d0)
"recurse" (0x5fbe2570)
"if" (0x5fbe3880)
"recurse" (0x5fbe3b20)
"if" (0x5fbe4e30)
"recurse" (0x5fbe50d0)
"if" (0x5fbe63e0)
"recurse" (0x5fbe6680)
"if" (0x5fbe7990)
"recurse" (0x5fbe7c30)
"if" (0x5fbe8f40)
"recurse" (0x5fbe91e0)
"if" (0x5fbea4f0)
"recurse" (0x5fbea790)
"if" (0x5fbebaa0)
"recurse" (0x5fbebd40)
"if" (0x5fbed050)
"recurse" (0x5fbed2f0)
"if" (0x5fbee600)
"recurse" (0x5fbee8a0)
"if" (0x5fbefbb0)
"recurse" (0x5fbefe50)
"if" (0x5fbf1160)
"recurse" (0x5fbf1400)
"if" (0x5fbf2710)
"recurse" (0x5fbf29b0)
"if" (0x5fbf3cc0)
"recurse" (0x5fbf3f60)
"if" (0x5fbf5270)
"recurse" (0x5fbf5510)
"if" (0x5fbf6820)
"recurse" (0x5fbf6ac0)
"eval-buffer" (0x5fbf7f60)
"load-with-code-conversion" (0x5fbf9438)
"load" (0x5fbf9d38)
"command-line-1" (0x5fbfb5d0)
"command-line" (0x5fbfd118)
"normal-top-level" (0x5fbfe5c0)

Output of 'xbacktrace':

"mapbacktrace" (0x5fb6ddc0)
0x39eae30 Lisp type 3
"funcall" (0x5fb6e150)
"if" (0x5fb6ef60)
"recurse" (0x5fb6f200)
"if" (0x5fb70510)
"recurse" (0x5fb707b0)
"if" (0x5fb71ac0)
"recurse" (0x5fb71d60)
"if" (0x5fb73070)
"recurse" (0x5fb73310)
"if" (0x5fb74620)
"recurse" (0x5fb748c0)
"if" (0x5fb75bd0)
"recurse" (0x5fb75e70)
"if" (0x5fb77180)
"recurse" (0x5fb77420)
"if" (0x5fb78730)
"recurse" (0x5fb789d0)
"if" (0x5fb79ce0)
"recurse" (0x5fb79f80)
"if" (0x5fb7b290)
"recurse" (0x5fb7b530)
"if" (0x5fb7c840)
"recurse" (0x5fb7cae0)
"if" (0x5fb7ddf0)
"recurse" (0x5fb7e090)
"if" (0x5fb7f3a0)
"recurse" (0x5fb7f640)
"if" (0x5fb80950)
"recurse" (0x5fb80bf0)
"if" (0x5fb81f00)
"recurse" (0x5fb821a0)
"if" (0x5fb834b0)
"recurse" (0x5fb83750)
"if" (0x5fb84a60)
"recurse" (0x5fb84d00)
"if" (0x5fb86010)
"recurse" (0x5fb862b0)
"if" (0x5fb875c0)
"recurse" (0x5fb87860)
"if" (0x5fb88b70)
"recurse" (0x5fb88e10)
"if" (0x5fb8a120)
"recurse" (0x5fb8a3c0)
"if" (0x5fb8b6d0)
"recurse" (0x5fb8b970)
"if" (0x5fb8cc80)
"recurse" (0x5fb8cf20)
"if" (0x5fb8e230)
"recurse" (0x5fb8e4d0)
"if" (0x5fb8f7e0)
"recurse" (0x5fb8fa80)
"if" (0x5fb90d90)
"recurse" (0x5fb91030)
"if" (0x5fb92340)
"recurse" (0x5fb925e0)
"if" (0x5fb938f0)
"recurse" (0x5fb93b90)
"if" (0x5fb94ea0)
"recurse" (0x5fb95140)
"if" (0x5fb96450)
"recurse" (0x5fb966f0)
"if" (0x5fb97a00)
"recurse" (0x5fb97ca0)
"if" (0x5fb98fb0)
"recurse" (0x5fb99250)
"if" (0x5fb9a560)
"recurse" (0x5fb9a800)
"if" (0x5fb9bb10)
"recurse" (0x5fb9bdb0)
"if" (0x5fb9d0c0)
"recurse" (0x5fb9d360)
"if" (0x5fb9e670)
"recurse" (0x5fb9e910)
"if" (0x5fb9fc20)
"recurse" (0x5fb9fec0)
"if" (0x5fba11d0)
"recurse" (0x5fba1470)
"if" (0x5fba2780)
"recurse" (0x5fba2a20)
"if" (0x5fba3d30)
"recurse" (0x5fba3fd0)
"if" (0x5fba52e0)
"recurse" (0x5fba5580)
"if" (0x5fba6890)
"recurse" (0x5fba6b30)
"if" (0x5fba7e40)
"recurse" (0x5fba80e0)
"if" (0x5fba93f0)
"recurse" (0x5fba9690)
"if" (0x5fbaa9a0)
"recurse" (0x5fbaac40)
"if" (0x5fbabf50)
"recurse" (0x5fbac1f0)
"if" (0x5fbad500)
"recurse" (0x5fbad7a0)
"if" (0x5fbaeab0)
"recurse" (0x5fbaed50)
"if" (0x5fbb0060)
"recurse" (0x5fbb0300)
"if" (0x5fbb1610)
"recurse" (0x5fbb18b0)
"if" (0x5fbb2bc0)
"recurse" (0x5fbb2e60)
"if" (0x5fbb4170)
"recurse" (0x5fbb4410)
"if" (0x5fbb5720)
"recurse" (0x5fbb59c0)
"if" (0x5fbb6cd0)
"recurse" (0x5fbb6f70)
"if" (0x5fbb8280)
"recurse" (0x5fbb8520)
"if" (0x5fbb9830)
"recurse" (0x5fbb9ad0)
"if" (0x5fbbade0)
"recurse" (0x5fbbb080)
"if" (0x5fbbc390)
"recurse" (0x5fbbc630)
"if" (0x5fbbd940)
"recurse" (0x5fbbdbe0)
"if" (0x5fbbeef0)
"recurse" (0x5fbbf190)
"if" (0x5fbc04a0)
"recurse" (0x5fbc0740)
"if" (0x5fbc1a50)
"recurse" (0x5fbc1cf0)
"if" (0x5fbc3000)
"recurse" (0x5fbc32a0)
"if" (0x5fbc45b0)
"recurse" (0x5fbc4850)
"if" (0x5fbc5b60)
"recurse" (0x5fbc5e00)
"if" (0x5fbc7110)
"recurse" (0x5fbc73b0)
"if" (0x5fbc86c0)
"recurse" (0x5fbc8960)
"if" (0x5fbc9c70)
"recurse" (0x5fbc9f10)
"if" (0x5fbcb220)
"recurse" (0x5fbcb4c0)
"if" (0x5fbcc7d0)
"recurse" (0x5fbcca70)
"if" (0x5fbcdd80)
"recurse" (0x5fbce020)
"if" (0x5fbcf330)
"recurse" (0x5fbcf5d0)
"if" (0x5fbd08e0)
"recurse" (0x5fbd0b80)
"if" (0x5fbd1e90)
"recurse" (0x5fbd2130)
"if" (0x5fbd3440)
"recurse" (0x5fbd36e0)
"if" (0x5fbd49f0)
"recurse" (0x5fbd4c90)
"if" (0x5fbd5fa0)
"recurse" (0x5fbd6240)
"if" (0x5fbd7550)
"recurse" (0x5fbd77f0)
"if" (0x5fbd8b00)
"recurse" (0x5fbd8da0)
"if" (0x5fbda0b0)
"recurse" (0x5fbda350)
"if" (0x5fbdb660)
"recurse" (0x5fbdb900)
"if" (0x5fbdcc10)
"recurse" (0x5fbdceb0)
"if" (0x5fbde1c0)
"recurse" (0x5fbde460)
"if" (0x5fbdf770)
"recurse" (0x5fbdfa10)
"if" (0x5fbe0d20)
"recurse" (0x5fbe0fc0)
"if" (0x5fbe22d0)
"recurse" (0x5fbe2570)
"if" (0x5fbe3880)
"recurse" (0x5fbe3b20)
"if" (0x5fbe4e30)
"recurse" (0x5fbe50d0)
"if" (0x5fbe63e0)
"recurse" (0x5fbe6680)
"if" (0x5fbe7990)
"recurse" (0x5fbe7c30)
"if" (0x5fbe8f40)
"recurse" (0x5fbe91e0)
"if" (0x5fbea4f0)
"recurse" (0x5fbea790)
"if" (0x5fbebaa0)
"recurse" (0x5fbebd40)
"if" (0x5fbed050)
"recurse" (0x5fbed2f0)
"if" (0x5fbee600)
"recurse" (0x5fbee8a0)
"if" (0x5fbefbb0)
"recurse" (0x5fbefe50)
"if" (0x5fbf1160)
"recurse" (0x5fbf1400)
"if" (0x5fbf2710)
"recurse" (0x5fbf29b0)
"if" (0x5fbf3cc0)
"recurse" (0x5fbf3f60)
"if" (0x5fbf5270)
"recurse" (0x5fbf5510)
"if" (0x5fbf6820)
"recurse" (0x5fbf6ac0)
"eval-buffer" (0x5fbf7f60)
"load-with-code-conversion" (0x5fbf9438)
"load" (0x5fbf9d38)
"command-line-1" (0x5fbfb5d0)
"command-line" (0x5fbfd118)
"normal-top-level" (0x5fbfe5c0)




In GNU Emacs 26.0.50 (build 29, x86_64-apple-darwin16.6.0, NS appkit-1504.83 
Version 10.12.5 (Build 16F73))
 of 2017-06-05 built on p
Repository revision: 9ae5c0a2e12c25f37736d9b106c55227b55521e6
Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.

Configured using:
 'configure --with-modules --without-xml2 --without-pop --with-mailutils
 --enable-gcc-warnings=yes --enable-checking
 --enable-check-lisp-object-type
 MAKEINFO=/usr/local/opt/texinfo/bin/makeinfo 'CFLAGS=-ggdb3 -O0''

Configured features:
RSVG DBUS NOTIFY ACL GNUTLS ZLIB TOOLKIT_SCROLL_BARS NS MODULES

Important settings:
  value of $LANG: de_DE.UTF-8
  locale-coding-system: utf-8-unix

Major mode: Lisp Interaction

Minor modes in effect:
  tooltip-mode: t
  global-eldoc-mode: t
  eldoc-mode: t
  electric-indent-mode: t
  mouse-wheel-mode: t
  tool-bar-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  line-number-mode: t
  transient-mark-mode: t

Load-path shadows:
None found.

Features:
(shadow sort mail-extr emacsbug message subr-x puny seq byte-opt gv
bytecomp byte-compile cconv cl-loaddefs cl-lib dired dired-loaddefs
format-spec rfc822 mml easymenu mml-sec password-cache epa derived epg
epg-config gnus-util rmail rmail-loaddefs mm-decode mm-bodies mm-encode
mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047
rfc2045 ietf-drums mm-util mail-prsvr mail-utils term/xterm xterm
time-date tooltip eldoc electric uniquify ediff-hook vc-hooks
lisp-float-type mwheel term/ns-win ns-win ucs-normalize mule-util
term/common-win tool-bar dnd fontset image regexp-opt fringe
tabulated-list replace newcomment text-mode elisp-mode lisp-mode
prog-mode register page menu-bar rfn-eshadow isearch timer select
scroll-bar mouse jit-lock font-lock syntax facemenu font-core
term/tty-colors frame cl-generic cham georgian utf-8-lang misc-lang
vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932
hebrew greek romanian slovak czech european ethiopic indian cyrillic
chinese composite charscript charprop case-table epa-hook jka-cmpr-hook
help simple abbrev obarray minibuffer cl-preloaded nadvice loaddefs
button faces cus-face macroexp files text-properties overlay sha1 md5
base64 format env code-pages mule custom widget hashtable-print-readable
backquote dbusbind kqueue cocoa ns multi-tty make-network-process emacs)

Memory information:
((conses 16 208288 7714)
 (symbols 48 20111 1)
 (miscs 40 42 184)
 (strings 32 18446 5238)
 (string-bytes 1 584512)
 (vectors 16 32905)
 (vector-slots 8 659235 4438)
 (floats 8 52 293)
 (intervals 56 193 0)
 (buffers 976 11))





reply via email to

[Prev in Thread] Current Thread [Next in Thread]