Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.69.214.198
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
mysqlsh /
lib /
python3.13 /
idlelib /
[ HOME SHELL ]
Name
Size
Permission
Action
Icons
[ DIR ]
drwxr-xr-x
idle_test
[ DIR ]
drwxr-xr-x
CREDITS.txt
2.1
KB
-rw-r--r--
ChangeLog
55.04
KB
-rw-r--r--
HISTORY.txt
10.07
KB
-rw-r--r--
NEWS2x.txt
26.54
KB
-rw-r--r--
News3.txt
54.67
KB
-rw-r--r--
README.txt
11.38
KB
-rw-r--r--
TODO.txt
8.28
KB
-rw-r--r--
__init__.py
396
B
-rw-r--r--
__main__.py
159
B
-rw-r--r--
autocomplete.py
9.13
KB
-rw-r--r--
autocomplete_w.py
20.37
KB
-rw-r--r--
autoexpand.py
3.14
KB
-rw-r--r--
browser.py
8.39
KB
-rw-r--r--
calltip.py
7.1
KB
-rw-r--r--
calltip_w.py
6.92
KB
-rw-r--r--
codecontext.py
11.15
KB
-rw-r--r--
colorizer.py
14.44
KB
-rw-r--r--
config-extensions.def
2.21
KB
-rw-r--r--
config-highlight.def
2.8
KB
-rw-r--r--
config-keys.def
10.65
KB
-rw-r--r--
config-main.def
3.09
KB
-rw-r--r--
config.py
37.5
KB
-rw-r--r--
config_key.py
14.87
KB
-rw-r--r--
configdialog.py
102.84
KB
-rw-r--r--
debugger.py
20.5
KB
-rw-r--r--
debugger_r.py
11.83
KB
-rw-r--r--
debugobj.py
4.08
KB
-rw-r--r--
debugobj_r.py
1.06
KB
-rw-r--r--
delegator.py
1.02
KB
-rw-r--r--
dynoption.py
1.95
KB
-rw-r--r--
editor.py
67.93
KB
-rw-r--r--
extend.txt
3.55
KB
-rw-r--r--
filelist.py
3.78
KB
-rw-r--r--
format.py
15.41
KB
-rw-r--r--
grep.py
7.34
KB
-rw-r--r--
help.html
76.68
KB
-rw-r--r--
help.py
11.69
KB
-rw-r--r--
help_about.py
8.76
KB
-rw-r--r--
history.py
3.97
KB
-rw-r--r--
hyperparser.py
12.59
KB
-rw-r--r--
idle.bat
177
B
-rw-r--r--
idle.py
454
B
-rw-r--r--
idle.pyw
570
B
-rw-r--r--
iomenu.py
15.78
KB
-rw-r--r--
macosx.py
9.07
KB
-rw-r--r--
mainmenu.py
3.85
KB
-rw-r--r--
multicall.py
18.21
KB
-rw-r--r--
outwin.py
5.57
KB
-rw-r--r--
parenmatch.py
7.04
KB
-rw-r--r--
pathbrowser.py
3.02
KB
-rw-r--r--
percolator.py
3.48
KB
-rw-r--r--
pyparse.py
19.4
KB
-rw-r--r--
pyshell.py
60.76
KB
-rwxr-xr-x
query.py
14.71
KB
-rw-r--r--
redirector.py
6.67
KB
-rw-r--r--
replace.py
9.57
KB
-rw-r--r--
rpc.py
20.58
KB
-rw-r--r--
run.py
21.36
KB
-rw-r--r--
runscript.py
8.08
KB
-rw-r--r--
scrolledlist.py
4.37
KB
-rw-r--r--
search.py
5.44
KB
-rw-r--r--
searchbase.py
7.67
KB
-rw-r--r--
searchengine.py
7.2
KB
-rw-r--r--
sidebar.py
19.85
KB
-rw-r--r--
squeezer.py
12.53
KB
-rw-r--r--
stackviewer.py
3.92
KB
-rw-r--r--
statusbar.py
1.44
KB
-rw-r--r--
textview.py
6.65
KB
-rw-r--r--
tooltip.py
6.51
KB
-rw-r--r--
tree.py
16.1
KB
-rw-r--r--
undo.py
10.76
KB
-rw-r--r--
util.py
1.28
KB
-rw-r--r--
window.py
2.55
KB
-rw-r--r--
zoomheight.py
4.1
KB
-rw-r--r--
zzdummy.py
1.96
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : help_about.py
"""About Dialog for IDLE """ import os import sys import webbrowser from platform import python_version, architecture from tkinter import Toplevel, Frame, Label, Button, PhotoImage from tkinter import SUNKEN, TOP, BOTTOM, LEFT, X, BOTH, W, EW, NSEW, E from idlelib import textview pyver = python_version() if sys.platform == 'darwin': bits = '64' if sys.maxsize > 2**32 else '32' else: bits = architecture()[0][:2] class AboutDialog(Toplevel): """Modal about dialog for idle """ def __init__(self, parent, title=None, *, _htest=False, _utest=False): """Create popup, do not return until tk widget destroyed. parent - parent of this dialog title - string which is title of popup dialog _htest - bool, change box location when running htest _utest - bool, don't wait_window when running unittest """ Toplevel.__init__(self, parent) self.configure(borderwidth=5) # place dialog below parent if running htest self.geometry("+%d+%d" % ( parent.winfo_rootx()+30, parent.winfo_rooty()+(30 if not _htest else 100))) self.bg = "#bbbbbb" self.fg = "#000000" self.create_widgets() self.resizable(height=False, width=False) self.title(title or f'About IDLE {pyver} ({bits} bit)') self.transient(parent) self.grab_set() self.protocol("WM_DELETE_WINDOW", self.ok) self.parent = parent self.button_ok.focus_set() self.bind('<Return>', self.ok) # dismiss dialog self.bind('<Escape>', self.ok) # dismiss dialog self._current_textview = None self._utest = _utest if not _utest: self.deiconify() self.wait_window() def create_widgets(self): frame = Frame(self, borderwidth=2, relief=SUNKEN) frame_buttons = Frame(self) frame_buttons.pack(side=BOTTOM, fill=X) frame.pack(side=TOP, expand=True, fill=BOTH) self.button_ok = Button(frame_buttons, text='Close', command=self.ok) self.button_ok.pack(padx=5, pady=5) frame_background = Frame(frame, bg=self.bg) frame_background.pack(expand=True, fill=BOTH) header = Label(frame_background, text='IDLE', fg=self.fg, bg=self.bg, font=('courier', 24, 'bold')) header.grid(row=0, column=0, sticky=E, padx=10, pady=10) tkpatch = self._root().getvar('tk_patchLevel') ext = '.png' if tkpatch >= '8.6' else '.gif' icon = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'Icons', f'idle_48{ext}') self.icon_image = PhotoImage(master=self._root(), file=icon) logo = Label(frame_background, image=self.icon_image, bg=self.bg) logo.grid(row=0, column=0, sticky=W, rowspan=2, padx=10, pady=10) byline_text = "Python's Integrated Development\nand Learning Environment" + 5*'\n' byline = Label(frame_background, text=byline_text, justify=LEFT, fg=self.fg, bg=self.bg) byline.grid(row=2, column=0, sticky=W, columnspan=3, padx=10, pady=5) forums_url = "https://discuss.python.org" forums = Label(frame_background, text="Python forums: "+forums_url, justify=LEFT, fg=self.fg, bg=self.bg) forums.grid(row=6, column=0, sticky=W, padx=10, pady=0) forums.bind("<Button-1>", lambda event: webbrowser.open(forums_url)) docs_url = ("https://docs.python.org/%d.%d/library/idle.html" % sys.version_info[:2]) docs = Label(frame_background, text=docs_url, justify=LEFT, fg=self.fg, bg=self.bg) docs.grid(row=7, column=0, columnspan=2, sticky=W, padx=10, pady=0) docs.bind("<Button-1>", lambda event: webbrowser.open(docs_url)) Frame(frame_background, borderwidth=1, relief=SUNKEN, height=2, bg=self.bg).grid(row=8, column=0, sticky=EW, columnspan=3, padx=5, pady=5) tclver = str(self.info_patchlevel()) tkver = ' and ' + tkpatch if tkpatch != tclver else '' versions = f"Python {pyver} with tcl/tk {tclver}{tkver}" vers = Label(frame_background, text=versions, fg=self.fg, bg=self.bg) vers.grid(row=9, column=0, sticky=W, padx=10, pady=0) py_buttons = Frame(frame_background, bg=self.bg) py_buttons.grid(row=10, column=0, columnspan=2, sticky=NSEW) self.py_license = Button(py_buttons, text='License', width=8, highlightbackground=self.bg, command=self.show_py_license) self.py_license.pack(side=LEFT, padx=10, pady=10) self.py_copyright = Button(py_buttons, text='Copyright', width=8, highlightbackground=self.bg, command=self.show_py_copyright) self.py_copyright.pack(side=LEFT, padx=10, pady=10) self.py_credits = Button(py_buttons, text='Credits', width=8, highlightbackground=self.bg, command=self.show_py_credits) self.py_credits.pack(side=LEFT, padx=10, pady=10) Frame(frame_background, borderwidth=1, relief=SUNKEN, height=2, bg=self.bg).grid(row=11, column=0, sticky=EW, columnspan=3, padx=5, pady=5) idle = Label(frame_background, text='IDLE', fg=self.fg, bg=self.bg) idle.grid(row=12, column=0, sticky=W, padx=10, pady=0) idle_buttons = Frame(frame_background, bg=self.bg) idle_buttons.grid(row=13, column=0, columnspan=3, sticky=NSEW) self.readme = Button(idle_buttons, text='Readme', width=8, highlightbackground=self.bg, command=self.show_readme) self.readme.pack(side=LEFT, padx=10, pady=10) self.idle_news = Button(idle_buttons, text='News', width=8, highlightbackground=self.bg, command=self.show_idle_news) self.idle_news.pack(side=LEFT, padx=10, pady=10) self.idle_credits = Button(idle_buttons, text='Credits', width=8, highlightbackground=self.bg, command=self.show_idle_credits) self.idle_credits.pack(side=LEFT, padx=10, pady=10) # License, copyright, and credits are of type _sitebuiltins._Printer def show_py_license(self): "Handle License button event." self.display_printer_text('About - License', license) def show_py_copyright(self): "Handle Copyright button event." self.display_printer_text('About - Copyright', copyright) def show_py_credits(self): "Handle Python Credits button event." self.display_printer_text('About - Python Credits', credits) # Encode CREDITS.txt to utf-8 for proper version of Loewis. # Specify others as ascii until need utf-8, so catch errors. def show_idle_credits(self): "Handle Idle Credits button event." self.display_file_text('About - Credits', 'CREDITS.txt', 'utf-8') def show_readme(self): "Handle Readme button event." self.display_file_text('About - Readme', 'README.txt', 'ascii') def show_idle_news(self): "Handle News button event." self.display_file_text('About - News', 'News3.txt', 'utf-8') def display_printer_text(self, title, printer): """Create textview for built-in constants. Built-in constants have type _sitebuiltins._Printer. The text is extracted from the built-in and then sent to a text viewer with self as the parent and title as the title of the popup. """ printer._Printer__setup() text = '\n'.join(printer._Printer__lines) self._current_textview = textview.view_text( self, title, text, _utest=self._utest) def display_file_text(self, title, filename, encoding=None): """Create textview for filename. The filename needs to be in the current directory. The path is sent to a text viewer with self as the parent, title as the title of the popup, and the file encoding. """ fn = os.path.join(os.path.abspath(os.path.dirname(__file__)), filename) self._current_textview = textview.view_file( self, title, fn, encoding, _utest=self._utest) def ok(self, event=None): "Dismiss help_about dialog." self.grab_release() self.destroy() if __name__ == '__main__': from unittest import main main('idlelib.idle_test.test_help_about', verbosity=2, exit=False) from idlelib.idle_test.htest import run run(AboutDialog)
Close