mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
Merge with 3.4
This commit is contained in:
commit
0eb1896a8f
1 changed files with 3 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
from tkinter import *
|
from tkinter import *
|
||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
from idlelib import textView
|
from idlelib import textView
|
||||||
from idlelib import idlever
|
from idlelib import idlever
|
||||||
|
@ -62,7 +63,8 @@ class AboutDialog(Toplevel):
|
||||||
justify=LEFT, fg=self.fg, bg=self.bg)
|
justify=LEFT, fg=self.fg, bg=self.bg)
|
||||||
labelEmail.grid(row=6, column=0, columnspan=2,
|
labelEmail.grid(row=6, column=0, columnspan=2,
|
||||||
sticky=W, padx=10, pady=0)
|
sticky=W, padx=10, pady=0)
|
||||||
labelWWW = Label(frameBg, text='www: http://www.python.org/idle/',
|
labelWWW = Label(frameBg, text='https://docs.python.org/' +
|
||||||
|
sys.version[:3] + '/library/idle.html',
|
||||||
justify=LEFT, fg=self.fg, bg=self.bg)
|
justify=LEFT, fg=self.fg, bg=self.bg)
|
||||||
labelWWW.grid(row=7, column=0, columnspan=2, sticky=W, padx=10, pady=0)
|
labelWWW.grid(row=7, column=0, columnspan=2, sticky=W, padx=10, pady=0)
|
||||||
Frame(frameBg, borderwidth=1, relief=SUNKEN,
|
Frame(frameBg, borderwidth=1, relief=SUNKEN,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue