summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Klausner <tk@giga.or.at>2021-12-10 09:41:47 (GMT)
committerGitHub <noreply@github.com>2021-12-10 09:41:47 (GMT)
commit2fb797e93c6bbd44dfcbe23f63acfa240a87e48a (patch)
tree2687b3f5494499d6b88c2c2dcd19d4fef495f5dc
parent8c74713d0e349c27518080945d5f040dfd52a56e (diff)
downloadcpython-2fb797e93c6bbd44dfcbe23f63acfa240a87e48a.zip
cpython-2fb797e93c6bbd44dfcbe23f63acfa240a87e48a.tar.gz
cpython-2fb797e93c6bbd44dfcbe23f63acfa240a87e48a.tar.bz2
bpo-46000: Improve NetBSD curses compatibility (GH-29947)
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-12-07-11-42-44.bpo-46000.v_ru3k.rst1
-rw-r--r--Modules/_cursesmodule.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-12-07-11-42-44.bpo-46000.v_ru3k.rst b/Misc/NEWS.d/next/Core and Builtins/2021-12-07-11-42-44.bpo-46000.v_ru3k.rst
new file mode 100644
index 0000000..68e4bfa
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-12-07-11-42-44.bpo-46000.v_ru3k.rst
@@ -0,0 +1 @@
+Improve compatibility of the :mod:`curses` module with NetBSD curses.
diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c
index 3770a03..7ebad69 100644
--- a/Modules/_cursesmodule.c
+++ b/Modules/_cursesmodule.c
@@ -1230,8 +1230,8 @@ PyCursesWindow_ChgAt(PyCursesWindowObject *self, PyObject *args)
return NULL;
}
- color = (short)((attr >> 8) & 0xff);
- attr = attr - (color << 8);
+ color = (short) PAIR_NUMBER(attr);
+ attr = attr & A_ATTRIBUTES;
if (use_xy) {
rtn = mvwchgat(self->win,y,x,num,attr,color,NULL);