Merge from 3.3: Issue #17390

This commit is contained in:
Terry Jan Reedy 2013-03-30 18:39:14 -04:00
commit 42a83201a0
2 changed files with 5 additions and 1 deletions

View file

@ -16,6 +16,7 @@ import io
import linecache
from code import InteractiveInterpreter
from platform import python_version
try:
from tkinter import *
@ -799,7 +800,7 @@ class ModifiedInterpreter(InteractiveInterpreter):
class PyShell(OutputWindow):
shell_title = "Python Shell"
shell_title = "Python " + python_version() + " Shell"
# Override classes
ColorDelegator = ModifiedColorDelegator