From: Xavier de Gaye Date: Wed, 12 Oct 2016 18:16:05 +0000 (+0200) Subject: Issue #20766: Merge with 3.5. X-Git-Tag: v3.6.0b3~128 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=291417da7fc141e4ede93b804b6532460f2cc528;p=python Issue #20766: Merge with 3.5. --- 291417da7fc141e4ede93b804b6532460f2cc528 diff --cc Lib/pdb.py index 7eb78b922a,47972655f9..97618b0ff1 --- a/Lib/pdb.py +++ b/Lib/pdb.py @@@ -135,8 -134,10 +135,10 @@@ line_prefix = '\n-> ' # Probably a be class Pdb(bdb.Bdb, cmd.Cmd): + _previous_sigint_handler = None + def __init__(self, completekey='tab', stdin=None, stdout=None, skip=None, - nosigint=False): + nosigint=False, readrc=True): bdb.Bdb.__init__(self, skip=skip) cmd.Cmd.__init__(self, completekey, stdin, stdout) if stdout: diff --cc Misc/NEWS index b9589e787a,28a7d944ef..667bff5eff --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -2,29 -2,10 +2,32 @@@ Python News +++++++++++ -What's New in Python 3.5.3 release candidate 1? -=============================================== +What's New in Python 3.6.0 beta 3 +================================= + +*Release date: XXXX-XX-XX* + +Core and Builtins +----------------- + +Library +------- + ++- Issue #20766: Fix references leaked by pdb in the handling of SIGINT ++ handlers. ++ +Build +----- + +- Issue #28208: Update Windows build to use SQLite 3.14.2.0. -Release date: TBA +- Issue #28248: Update Windows build to use OpenSSL 1.0.2j. + + +What's New in Python 3.6.0 beta 2 +================================= + +*Release date: 2016-10-10* Core and Builtins -----------------