Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
c0381aae
Kaydet (Commit)
c0381aae
authored
Ara 28, 2018
tarafından
Cheryl Sabella
Kaydeden (comit)
Terry Jan Reedy
Ara 28, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-28097: IDLE - Add Previous/Next History to Shell menu (#11325)
üst
804a5d94
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
10 deletions
+22
-10
idle.rst
Doc/library/idle.rst
+6
-0
help.html
Lib/idlelib/help.html
+12
-10
mainmenu.py
Lib/idlelib/mainmenu.py
+3
-0
2018-12-26-13-53-34.bpo-28097.95I9NT.rst
...NEWS.d/next/IDLE/2018-12-26-13-53-34.bpo-28097.95I9NT.rst
+1
-0
No files found.
Doc/library/idle.rst
Dosyayı görüntüle @
c0381aae
...
...
@@ -235,6 +235,12 @@ View Last Restart
Restart Shell
Restart the shell to clean the environment.
Previous History
Cycle through earlier commands in history which match the current entry.
Next History
Cycle through later commands in history which match the current entry.
Interrupt Execution
Stop a running program.
...
...
Lib/idlelib/help.html
Dosyayı görüntüle @
c0381aae
...
...
@@ -273,6 +273,10 @@ line.</dd>
<dd>
Scroll the shell window to the last Shell restart.
</dd>
<dt>
Restart Shell
</dt>
<dd>
Restart the shell to clean the environment.
</dd>
<dt>
Previous History
</dt>
<dd>
Cycle through earlier commands in history which match the current entry.
</dd>
<dt>
Next History
</dt>
<dd>
Cycle through later commands in history which match the current entry.
</dd>
<dt>
Interrupt Execution
</dt>
<dd>
Stop a running program.
</dd>
</dl>
...
...
@@ -309,7 +313,11 @@ size, additional help sources, and extensions. On macOS, open the
configuration dialog by selecting Preferences in the application
menu. For more, see
<a
class=
"reference internal"
href=
"#preferences"
><span
class=
"std std-ref"
>
Setting preferences
</span></a>
under Help and preferences.
</dd>
<dt>
Code Context (toggle)(Editor Window only)
</dt>
<dt>
Zoom/Restore Height
</dt>
<dd>
Toggles the window between normal size and maximum height. The initial size
defaults to 40 lines by 80 chars unless changed on the General tab of the
Configure IDLE dialog.
</dd>
<dt>
Show/Hide Code Context (Editor Window only)
</dt>
<dd>
Open a pane at the top of the edit window which shows the block context
of the code which has scrolled above the top of the window. See
<a
class=
"reference internal"
href=
"#code-context"
><span
class=
"std std-ref"
>
Code Context
</span></a>
in the Editing and Navigation section below.
</dd>
...
...
@@ -317,14 +325,8 @@ of the code which has scrolled above the top of the window. See
</div>
<div
class=
"section"
id=
"window-menu-shell-and-editor"
>
<h3>
Window menu (Shell and Editor)
<a
class=
"headerlink"
href=
"#window-menu-shell-and-editor"
title=
"Permalink to this headline"
>
¶
</a></h3>
<dl
class=
"docutils"
>
<dt>
Zoom Height
</dt>
<dd>
Toggles the window between normal size and maximum height. The initial size
defaults to 40 lines by 80 chars unless changed on the General tab of the
Configure IDLE dialog.
</dd>
</dl>
<p>
The rest of this menu lists the names of all open windows; select one to bring
it to the foreground (deiconifying it if necessary).
</p>
<p>
Lists the names of all open windows; select one to bring it to the foreground
(deiconifying it if necessary).
</p>
</div>
<div
class=
"section"
id=
"help-menu-shell-and-editor"
>
<h3>
Help menu (Shell and Editor)
<a
class=
"headerlink"
href=
"#help-menu-shell-and-editor"
title=
"Permalink to this headline"
>
¶
</a></h3>
...
...
@@ -918,7 +920,7 @@ also used for testing.</p>
<br
/>
<br
/>
Last updated on Dec 2
0
, 2018.
Last updated on Dec 2
8
, 2018.
<a
href=
"https://docs.python.org/3/bugs.html"
>
Found a bug
</a>
?
<br
/>
...
...
Lib/idlelib/mainmenu.py
Dosyayı görüntüle @
c0381aae
...
...
@@ -82,6 +82,9 @@ menudefs = [
(
'_View Last Restart'
,
'<<view-restart>>'
),
(
'_Restart Shell'
,
'<<restart-shell>>'
),
None
,
(
'_Previous History'
,
'<<history-previous>>'
),
(
'_Next History'
,
'<<history-next>>'
),
None
,
(
'_Interrupt Execution'
,
'<<interrupt-execution>>'
),
]),
...
...
Misc/NEWS.d/next/IDLE/2018-12-26-13-53-34.bpo-28097.95I9NT.rst
0 → 100644
Dosyayı görüntüle @
c0381aae
Add Previous/Next History entries to Shell menu.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment