Change all the function attributes from func_* -> __*__.  This gets rid
of func_name, func_dict and func_doc as they already exist as __name__,
__dict__ and __doc__.
diff --git a/Lib/Bastion.py b/Lib/Bastion.py
index 6a5cb5c..d83ea3e 100644
--- a/Lib/Bastion.py
+++ b/Lib/Bastion.py
@@ -158,7 +158,7 @@
     else:
         print "accessible"
     try:
-        print "b._get_.func_defaults =", map(type, b._get_.func_defaults),
+        print "b._get_.__defaults__ =", map(type, b._get_.__defaults__),
     except:
         print "inaccessible"
     else: