Kaydet (Commit) 426f4a1c authored tarafından Martin v. Löwis's avatar Martin v. Löwis

Patch #1524429: Use repr instead of backticks again.

üst ac4ae4ba
...@@ -186,7 +186,7 @@ class Variable: ...@@ -186,7 +186,7 @@ class Variable:
if name: if name:
self._name = name self._name = name
else: else:
self._name = 'PY_VAR' + `_varnum` self._name = 'PY_VAR' + repr(_varnum)
_varnum += 1 _varnum += 1
if value != None: if value != None:
self.set(value) self.set(value)
......
...@@ -27,6 +27,8 @@ Core and builtins ...@@ -27,6 +27,8 @@ Core and builtins
Library 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 - 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 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 the minimum value that is correct. This is to support an undocumented but
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment