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
7a8ce5af
Kaydet (Commit)
7a8ce5af
authored
Eki 08, 2004
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
[Bug #1022311] curses module uses y,x ordering of arguments, not x,y
üst
293dc9d7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
libcurses.tex
Doc/lib/libcurses.tex
+5
-5
No files found.
Doc/lib/libcurses.tex
Dosyayı görüntüle @
7a8ce5af
...
...
@@ -670,7 +670,7 @@ Updates the current cursor position of all the ancestors of the window
to reflect the current cursor position of the window.
\end{methoddesc}
\begin{methoddesc}
[window]
{
delch
}{
\optional
{
x, y
}}
\begin{methoddesc}
[window]
{
delch
}{
\optional
{
y, x
}}
Delete any character at
\code
{
(
\var
{
y
}
,
\var
{
x
}
)
}
.
\end{methoddesc}
...
...
@@ -708,14 +708,14 @@ Return a tuple \code{(\var{y}, \var{x})} of co-ordinates of upper-left
corner.
\end{methoddesc}
\begin{methoddesc}
[window]
{
getch
}{
\optional
{
x, y
}}
\begin{methoddesc}
[window]
{
getch
}{
\optional
{
y, x
}}
Get a character. Note that the integer returned does
\emph
{
not
}
have to
be in
\ASCII
{}
range: function keys, keypad keys and so on return numbers
higher than 256. In no-delay mode, -1 is returned if there is
no input.
\end{methoddesc}
\begin{methoddesc}
[window]
{
getkey
}{
\optional
{
x, y
}}
\begin{methoddesc}
[window]
{
getkey
}{
\optional
{
y, x
}}
Get a character, returning a string instead of an integer, as
\method
{
getch()
}
does. Function keys, keypad keys and so on return a
multibyte string containing the key name. In no-delay mode, an
...
...
@@ -733,7 +733,7 @@ parent window into two integer variables y and x. Returns
\code
{
-1,-1
}
if this window has no parent.
\end{methoddesc}
\begin{methoddesc}
[window]
{
getstr
}{
\optional
{
x, y
}}
\begin{methoddesc}
[window]
{
getstr
}{
\optional
{
y, x
}}
Read a string from the user, with primitive line editing capacity.
\end{methoddesc}
...
...
@@ -769,7 +769,7 @@ degrade performance considerably, due to repeated calls to
wrefresh. This option is disabled by default.
\end{methoddesc}
\begin{methoddesc}
[window]
{
inch
}{
\optional
{
x, y
}}
\begin{methoddesc}
[window]
{
inch
}{
\optional
{
y, x
}}
Return the character at the given position in the window. The bottom
8 bits are the character proper, and upper bits are the attributes.
\end{methoddesc}
...
...
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