mirror of
https://github.com/python/cpython.git
synced 2025-08-22 17:55:18 +00:00
#6649: merge with 3.3.
This commit is contained in:
commit
3aaf5dab8a
2 changed files with 3 additions and 1 deletions
|
@ -145,7 +145,7 @@ class SocketIO(object):
|
||||||
|
|
||||||
def exithook(self):
|
def exithook(self):
|
||||||
"override for specific exit action"
|
"override for specific exit action"
|
||||||
os._exit()
|
os._exit(0)
|
||||||
|
|
||||||
def debug(self, *args):
|
def debug(self, *args):
|
||||||
if not self.debugging:
|
if not self.debugging:
|
||||||
|
|
|
@ -297,6 +297,8 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo.
|
||||||
|
|
||||||
- Issue #17435: threading.Timer's __init__ method no longer uses mutable
|
- Issue #17435: threading.Timer's __init__ method no longer uses mutable
|
||||||
default values for the args and kwargs parameters.
|
default values for the args and kwargs parameters.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue