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
23e37aa7
Kaydet (Commit)
23e37aa7
authored
Ock 26, 2014
tarafından
Larry Hastings
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #20358: Tests for curses.window.overlay and curses.window.overwrite
no longer specify min{row,col} > max{row,col}.
üst
f0537e8d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
test_curses.py
Lib/test/test_curses.py
+2
-2
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_curses.py
Dosyayı görüntüle @
23e37aa7
...
...
@@ -115,8 +115,8 @@ def window_funcs(stdscr):
stdscr
.
notimeout
(
1
)
win2
.
overlay
(
win
)
win2
.
overwrite
(
win
)
win2
.
overlay
(
win
,
1
,
2
,
3
,
3
,
2
,
1
)
win2
.
overwrite
(
win
,
1
,
2
,
3
,
3
,
2
,
1
)
win2
.
overlay
(
win
,
1
,
2
,
2
,
1
,
3
,
3
)
win2
.
overwrite
(
win
,
1
,
2
,
2
,
1
,
3
,
3
)
stdscr
.
redrawln
(
1
,
2
)
stdscr
.
scrollok
(
1
)
...
...
Misc/NEWS
Dosyayı görüntüle @
23e37aa7
...
...
@@ -142,6 +142,9 @@ IDLE
Tests
-----
- Issue #20358: Tests for curses.window.overlay and curses.window.overwrite
no longer specify min{row,col} > max{row,col}.
- Issue #19886: Use better estimated memory requirements for bigmem tests.
Tools/Demos
...
...
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