Home
last modified time | relevance | path

Searched refs:EditorWindow (Results 1 – 25 of 25) sorted by relevance

/third_party/python/Lib/idlelib/
Doutwin.py8 from idlelib.editor import EditorWindow
58 class OutputWindow(EditorWindow):
79 EditorWindow.__init__(self, *args)
DChangeLog22 * ChangeLog, EditorWindow.py, INSTALLATION, NEWS.txt, README.txt,
202 * EditorWindow.py: py-cvs-2000_07_13 (Rev 1.38) merge "Remove
209 * EditorWindow.py, FileList.py, IdleConf.py, PyParse.py,
319 * EditorWindow.py: py-cvs-rel2_1 (Rev 1.33 - 1.37) merge
419 EditorWindow.py, FileList.py, FormatParagraph.py, IOBinding.py,
435 Debugger.py, Delegator.py, EditorWindow.py, FileList.py,
463 ConfigParser.py, Debugger.py, Delegator.py, EditorWindow.py,
544 EditorWindow.py, ExecBinding.py, Remote.py, protocol.py, spawn.py,
566 EditorWindow.py, ExecBinding.py, Remote.py, protocol.py, spawn.py,
579 * EditorWindow.py: Support for Moshe's status bar.
[all …]
Dfilelist.py10 from idlelib.editor import EditorWindow
37 edit = self.EditorWindow(self, filename, key)
50 return self.EditorWindow(self, filename)
DNEWS2x.txt106 - Clean up EditorWindow close.
177 - EditorWindow.test() was failing. Bug 1417598
179 - EditorWindow failed when used stand-alone if sys.ps1 not set.
241 tabs for the current EditorWindow via the Format menu) but IDLE will
252 - Restore use of EditorWindow.set_indentation_params(), was dead code since
253 Autoindent was merged into EditorWindow. This allows IDLE to conform to the
300 - EditorWindow.py was not finding the .chm help file on Windows. Typo
322 EditorWindow.update_recent_files_list() was failing. Python Bug 931336.
458 - When a module is run from an EditorWindow: if its directory is not in
489 Also, add a configuration option 'EditorWindow/encoding', which has three
[all …]
Dpyshell.py55 from idlelib.editor import EditorWindow, fixwordbreaks
139 class PyShellEditorWindow(EditorWindow):
144 EditorWindow.__init__(self, *args)
326 EditorWindow._close(self)
334 EditorWindow = PyShellEditorWindow variable in PyShellFileList
1122 return EditorWindow.close(self)
1138 EditorWindow._close(self)
Deditor.py49 class EditorWindow: class
76 if EditorWindow.help_url is None:
98 EditorWindow.help_url = dochome
101 EditorWindow.help_url = 'file://' + EditorWindow.help_url
103 EditorWindow.help_url = ("https://docs.python.org/%d.%d/"
801 EditorWindow.color_config(self.text)
1658 edit = EditorWindow(root=root, filename=filename)
Dconfig-main.def59 [EditorWindow]
Dextend.txt20 `editwin', an EditorWindow instance. The extension cannot assume much
DREADME.txt123 'eEW' = editor.EditorWindow
DTODO.txt64 - too much knowledge in FileList about EditorWindow (for example)
DNEWS.txt155 when EditorWindow.close is called twice. Printing a traceback, when
1039 The now unused EditorWindow.HelpDialog class and helt.txt file are deprecated.
/third_party/python/Lib/idlelib/idle_test/
Dtest_runscript.py7 from idlelib.editor import EditorWindow
27 ew = EditorWindow(root=self.root)
Dtest_zoomheight.py8 from idlelib.editor import EditorWindow
18 cls.editwin = EditorWindow(root=cls.root)
Dtest_iomenu.py7 from idlelib.editor import EditorWindow
17 cls.editwin = EditorWindow(root=cls.root)
Dtest_hyperparser.py7 from idlelib.editor import EditorWindow
17 _build_char_in_string_func = EditorWindow._build_char_in_string_func
18 is_char_in_string = EditorWindow.is_char_in_string
Dtest_format.py8 from idlelib.editor import EditorWindow
244 get_selection_indices = EditorWindow. get_selection_indices
389 _make_blanks = EditorWindow._make_blanks
390 get_selection_indices = EditorWindow.get_selection_indices
Dtest_filelist.py28 self.assertEqual(type(e), flist.EditorWindow)
Dtest_pyshell.py50 self.assertEqual(psfl.EditorWindow, pyshell.PyShellEditorWindow)
Dtest_editor.py10 Editor = editor.EditorWindow
Dtest_zzdummy.py31 get_selection_indices = editor.EditorWindow.get_selection_indices
DREADME.txt87 If a test creates instance 'e' of EditorWindow, call 'e._close()' before
/third_party/python/Misc/NEWS.d/
D3.5.1rc1.rst1168 unused EditorWindow.HelpDialog class and helt.txt file are deprecated.
D3.6.0a1.rst3412 unused EditorWindow.HelpDialog class and helt.txt file are deprecated.
D3.9.0a1.rst5114 EditorWindow.close is called twice. Printing a traceback, when IDLE is run
/third_party/python/Misc/
DHISTORY829 The now unused EditorWindow.HelpDialog class and helt.txt file are deprecated.
27800 * Tools/idle/EditorWindow.py, Tools/idle/Bindings.py: