Fix the exclusion of "config" in the methods copied from Pack to also
exclude "configure".
diff --git a/Lib/lib-tk/ScrolledText.py b/Lib/lib-tk/ScrolledText.py
index 4a67f36..f1c2bb0 100644
--- a/Lib/lib-tk/ScrolledText.py
+++ b/Lib/lib-tk/ScrolledText.py
@@ -33,5 +33,5 @@
 
 		# Copy Pack methods of self.frame -- hack!
 		for m in Pack.__dict__.keys():
-			if m[0] != '_' and m != 'config':
+			if m[0] != '_' and m != 'config' and m != 'configure':
 				setattr(self, m, getattr(self.frame, m))