[Python-checkins] r63505 - sandbox/trunk/ttk-gsoc/src/3.x/ttk.py

guilherme.polo python-checkins at python.org
Tue May 20 16:04:08 CEST 2008


Author: guilherme.polo
Date: Tue May 20 16:04:08 2008
New Revision: 63505

Log:
Forgot an iteritems around, again ;/


Modified:
   sandbox/trunk/ttk-gsoc/src/3.x/ttk.py

Modified: sandbox/trunk/ttk-gsoc/src/3.x/ttk.py
==============================================================================
--- sandbox/trunk/ttk-gsoc/src/3.x/ttk.py	(original)
+++ sandbox/trunk/ttk-gsoc/src/3.x/ttk.py	Tue May 20 16:04:08 2008
@@ -225,7 +225,7 @@
 
             # find where args end, and where kwargs start
             argc = 1 # etype was the first one
-            while argc < len(eopts) and not hasattr(eopts[argc], 'iteritems'):
+            while argc < len(eopts) and not hasattr(eopts[argc], 'items'):
                 argc += 1
 
             elemargs = eopts[1:argc]


More information about the Python-checkins mailing list