[Python-checkins] release: stop updating idlever.py (#24199)

benjamin.peterson python-checkins at python.org
Sat May 23 00:56:02 CEST 2015


https://hg.python.org/release/rev/ab27d3fc0e64
changeset:   95:ab27d3fc0e64
user:        Benjamin Peterson <benjamin at python.org>
date:        Fri May 22 17:55:56 2015 -0500
summary:
  stop updating idlever.py (#24199)

files:
  release.py |  6 ------
  1 files changed, 0 insertions(+), 6 deletions(-)


diff --git a/release.py b/release.py
--- a/release.py
+++ b/release.py
@@ -138,12 +138,6 @@
 
     tweak_patchlevel(tag)
 
-    print('Updating Lib/idlelib/idlever.py...', end=' ')
-    with open('Lib/idlelib/idlever.py', 'w', encoding="ascii") as fp:
-        new = 'IDLE_VERSION = "%s"\n' % tag.text
-        fp.write(new)
-    print('done')
-
     print('Updating Lib/distutils/__init__.py...', end=' ')
     new = '__version__ = "%s"' % tag.text
     constant_replace('Lib/distutils/__init__.py', new, '#', '')

-- 
Repository URL: https://hg.python.org/release


More information about the Python-checkins mailing list