diff options
author | Georg Brandl <georg@python.org> | 2013-04-06 07:36:20 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-04-06 07:36:20 (GMT) |
commit | 8bc7e31529bd10dca2a139ecc0c8838e6021a5a2 (patch) | |
tree | 944a94a059d79af7ea212fce1ceb74c1f3e798a6 /Lib | |
parent | 7684fa8a38599fac51b838ccd62db7edadc7743d (diff) | |
download | cpython-8bc7e31529bd10dca2a139ecc0c8838e6021a5a2.zip cpython-8bc7e31529bd10dca2a139ecc0c8838e6021a5a2.tar.gz cpython-8bc7e31529bd10dca2a139ecc0c8838e6021a5a2.tar.bz2 |
Bump to 3.2.4.v3.2.4
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/__init__.py | 2 | ||||
-rw-r--r-- | Lib/idlelib/NEWS.txt | 6 | ||||
-rw-r--r-- | Lib/idlelib/idlever.py | 2 |
3 files changed, 4 insertions, 6 deletions
diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index 834d896..b8f1c16 100644 --- a/Lib/distutils/__init__.py +++ b/Lib/distutils/__init__.py @@ -13,5 +13,5 @@ used from a setup script as # Updated automatically by the Python release process. # #--start constants-- -__version__ = "3.2.4rc1" +__version__ = "3.2.4" #--end constants-- diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index f234b64..87c099f 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,6 +1,8 @@ What's New in IDLE 3.2.4? ========================= +- Issue #17625: Close the replace dialog after it is used. + - Issue #7163: Propagate return value of sys.stdout.write. - Issue #15318: Prevent writing to sys.stdin. @@ -856,7 +858,3 @@ What's New in IDLEfork 0.9 Alpha 1? Refer to HISTORY.txt for additional information on earlier releases. -------------------------------------------------------------------- - - - - diff --git a/Lib/idlelib/idlever.py b/Lib/idlelib/idlever.py index 00af62d..671b2b8 100644 --- a/Lib/idlelib/idlever.py +++ b/Lib/idlelib/idlever.py @@ -1 +1 @@ -IDLE_VERSION = "3.2.4rc1" +IDLE_VERSION = "3.2.4" |