summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2023-12-07 10:27:30 (GMT)
committerGitHub <noreply@github.com>2023-12-07 10:27:30 (GMT)
commit4b125dd31a634871d3b2d06ebfd1b9aef539766b (patch)
tree33708c143339b859cf520c6beccdd554d1ad5bf3 /Misc
parent4ba15de19153bb97308996ec85242bdeda358387 (diff)
downloadcpython-4b125dd31a634871d3b2d06ebfd1b9aef539766b.zip
cpython-4b125dd31a634871d3b2d06ebfd1b9aef539766b.tar.gz
cpython-4b125dd31a634871d3b2d06ebfd1b9aef539766b.tar.bz2
gh-51944: Add missing macOS constants to termios (#112823)
* gh-51944: Add some macOS constants to termios This changeset adds all public constants in <termio.h> and <sys/termios.h> on macOS that weren't present already. Based on the macOS 14.2 SDK Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-12-06-14-06-14.gh-issue-51944.-5qq_L.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-12-06-14-06-14.gh-issue-51944.-5qq_L.rst b/Misc/NEWS.d/next/Library/2023-12-06-14-06-14.gh-issue-51944.-5qq_L.rst
new file mode 100644
index 0000000..821eefa
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-12-06-14-06-14.gh-issue-51944.-5qq_L.rst
@@ -0,0 +1,6 @@
+Add the following constants to the :mod:`termios` module. These values are
+present in macOS system headers: ``ALTWERASE``, ``B14400``, ``B28800``,
+``B7200``, ``B76800``, ``CCAR_OFLOW``, ``CCTS_OFLOW``, ``CDSR_OFLOW``,
+``CDTR_IFLOW``, ``CIGNORE``, ``CRTS_IFLOW``, ``EXTPROC``, ``IUTF8``,
+``MDMBUF``, ``NL2``, ``NL3``, ``NOKERNINFO``, ``ONOEOT``, ``OXTABS``,
+``VDSUSP``, ``VSTATUS``.