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:
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
-----------------