From 555d12f986bbf422a98e9083fae266f5ec3550a7 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 18 Sep 2001 13:33:01 +0000 Subject: softspace(): be prepared to catch AttributeError as well as TypeError upon attempted attribute assignment. Caught by MWH, SF bug #462522. --- Lib/code.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/code.py b/Lib/code.py index e2d5065..ad42a9b 100644 --- a/Lib/code.py +++ b/Lib/code.py @@ -20,7 +20,8 @@ def softspace(file, newvalue): pass try: file.softspace = newvalue - except TypeError: # "attribute-less object" or "read-only attributes" + except (AttributeError, TypeError): + # "attribute-less object" or "read-only attributes" pass return oldvalue -- cgit v0.12