diff --git a/README.md b/README.md index d87a779..cbcccd9 100644 --- a/README.md +++ b/README.md @@ -1386,7 +1386,7 @@ except as : raise ``` -### Attributes +### Exception Object ```python arguments = .args line_num = .__traceback__.tb_lineno diff --git a/index.html b/index.html index cb1682b..e5fb3c3 100644 --- a/index.html +++ b/index.html @@ -1302,7 +1302,7 @@ LogicOp = Enum('LogicOp', {raise -

Attributes

arguments = <name>.args
+

Exception Object

arguments = <name>.args
 line_num  = <name>.__traceback__.tb_lineno
 func_name = <name>.__traceback__.tb_frame.f_code.co_name
 filename  = <name>.__traceback__.tb_frame.f_code.co_filename
@@ -1862,7 +1862,7 @@ last_el          = op.methodcaller('pop')(<l
 
 
 
-

Attributes

<list> = dir(<object>)               # Returns names of object's attributes (incl. methods).
+

Attributes

<list> = dir(<object>)               # Returns names of object's attributes (incl. methods).
 <dict> = vars(<object>)              # Returns dict of object's fields. Also <object>.__dict__.