From c496eda6fb98a4902510e5e53438e3981ad8a5f5 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 6 Apr 2013 15:14:06 -0400 Subject: move IDLE news to its own section --- Misc/NEWS | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS index 3cbc054..ca191b5 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -27,6 +27,15 @@ Library - Issue #17572: Avoid chained exceptions while passing bad directives to time.strptime(). Initial patch by Claudiu Popa. +- Issue #17435: threading.Timer's __init__ method no longer uses mutable + default values for the args and kwargs parameters. + +- Issue #17526: fix an IndexError raised while passing code without filename to + inspect.findsource(). Initial patch by Tyler Doyle. + +IDLE +---- + - Issue #17625: In IDLE, close the replace dialog after it is used. - Issue #14254: IDLE now handles readline correctly across shell restarts. @@ -40,12 +49,6 @@ Library - Issue #6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo. -- Issue #17435: threading.Timer's __init__ method no longer uses mutable - default values for the args and kwargs parameters. - -- Issue #17526: fix an IndexError raised while passing code without filename to - inspect.findsource(). Initial patch by Tyler Doyle. - Documentation ------------- -- cgit v0.12 mit' name='' value='switch'/> https://github.com/python/cpython.git
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/functools.py2
-rw-r--r--Lib/ipaddress.py4
-rw-r--r--Lib/uuid.py4
-rwxr-xr-xMac/BuildScript/build-installer.py4
-rwxr-xr-xTools/demo/ss1.py8
-rwxr-xr-xTools/scripts/eptags.py2
-rw-r--r--Tools/unicode/gencodec.py2
7 files changed, 13 insertions, 13 deletions
diff --git a/Lib/functools.py b/Lib/functools.py
index fb2e4bd..19c25e1 100644
--- a/Lib/functools.py
+++ b/Lib/functools.py
@@ -23,7 +23,7 @@ from types import MappingProxyType
from weakref import WeakKeyDictionary
try:
from _thread import RLock
-except:
+except ImportError:
class RLock:
'Dummy reentrant lock for builds without threads'
def __enter__(self): pass
diff --git a/Lib/ipaddress.py b/Lib/ipaddress.py