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
756c6ecd
Kaydet (Commit)
756c6ecd
authored
Kas 26, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #13415: Help to locate curses.h when _curses module is linked to ncursesw
üst
5604ef3e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
test_curses.py
Lib/test/test_curses.py
+4
-1
setup.py
setup.py
+4
-0
No files found.
Lib/test/test_curses.py
Dosyayı görüntüle @
756c6ecd
...
...
@@ -268,7 +268,10 @@ def test_unget_wch(stdscr):
if
not
hasattr
(
curses
,
'unget_wch'
):
return
for
ch
in
(
'a'
,
'
\xe9
'
,
'
\u20ac
'
,
'
\U0010FFFF
'
):
curses
.
unget_wch
(
ch
)
try
:
curses
.
unget_wch
(
ch
)
except
Exception
as
err
:
raise
Exception
(
"unget_wch(
%
a) failed:
%
s"
%
(
ch
,
err
))
read
=
stdscr
.
get_wch
()
read
=
chr
(
read
)
if
read
!=
ch
:
...
...
setup.py
Dosyayı görüntüle @
756c6ecd
...
...
@@ -1173,13 +1173,16 @@ class PyBuildExt(build_ext):
# Curses support, requiring the System V version of curses, often
# provided by the ncurses library.
panel_library
=
'panel'
curses_includes
=
[]
if
curses_library
.
startswith
(
'ncurses'
):
if
curses_library
==
'ncursesw'
:
# Bug 1464056: If _curses.so links with ncursesw,
# _curses_panel.so must link with panelw.
panel_library
=
'panelw'
curses_includes
=
[
'/usr/include/ncursesw'
]
curses_libs
=
[
curses_library
]
exts
.
append
(
Extension
(
'_curses'
,
[
'_cursesmodule.c'
],
include_dirs
=
curses_includes
,
define_macros
=
curses_defines
,
libraries
=
curses_libs
)
)
elif
curses_library
==
'curses'
and
platform
!=
'darwin'
:
...
...
@@ -1202,6 +1205,7 @@ class PyBuildExt(build_ext):
if
(
module_enabled
(
exts
,
'_curses'
)
and
self
.
compiler
.
find_library_file
(
lib_dirs
,
panel_library
)):
exts
.
append
(
Extension
(
'_curses_panel'
,
[
'_curses_panel.c'
],
include_dirs
=
curses_includes
,
libraries
=
[
panel_library
]
+
curses_libs
)
)
else
:
missing
.
append
(
'_curses_panel'
)
...
...
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