[Python-checkins] r50704 - in python/trunk: Lib/lib-tk/Tkinter.py Misc/NEWS

martin.v.loewis python-checkins at python.org
Tue Jul 18 19:46:33 CEST 2006


Author: martin.v.loewis
Date: Tue Jul 18 19:46:31 2006
New Revision: 50704

Modified:
   python/trunk/Lib/lib-tk/Tkinter.py
   python/trunk/Misc/NEWS
Log:
Patch #1524429: Use repr instead of backticks again.


Modified: python/trunk/Lib/lib-tk/Tkinter.py
==============================================================================
--- python/trunk/Lib/lib-tk/Tkinter.py	(original)
+++ python/trunk/Lib/lib-tk/Tkinter.py	Tue Jul 18 19:46:31 2006
@@ -186,7 +186,7 @@
         if name:
             self._name = name
         else:
-            self._name = 'PY_VAR' + `_varnum`
+            self._name = 'PY_VAR' + repr(_varnum)
             _varnum += 1
         if value != None:
             self.set(value)

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Tue Jul 18 19:46:31 2006
@@ -27,6 +27,8 @@
 Library
 -------
 
+- Patch #1524429: Use repr() instead of backticks in Tkinter again.
+
 - Bug #1520914: Change time.strftime() to accept a zero for any position in its
   argument tuple.  For arguments where zero is illegal, the value is forced to
   the minimum value that is correct.  This is to support an undocumented but


More information about the Python-checkins mailing list