This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: termios.c in qnx4.25
Type: behavior Stage: resolved
Components: Build Versions: Python 2.7
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, kbob_ru, serhiy.storchaka, sf-robot
Priority: low Keywords:

Created on 2005-09-19 09:28 by kbob_ru, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
termios.patch kbob_ru, 2006-08-05 15:56 termios patch
Messages (9)
msg26315 - (view) Author: kbob_ru (kbob_ru) Date: 2005-09-19 09:28
I compile python version 2.3.5 in QNX4.25.
But I found that #include <termios.h> don't work 
because in qnx4 we need to include <sys/termio.c> first 
in which #include <termios.h> already present.
Second, Module/termios.c needs flag IXANY, that not 
defined in qnx4 headers.

Include right header and write #ifdef IXANY \ #endif 
around helps to compile Module/termios.c.
msg26316 - (view) Author: kbob_ru (kbob_ru) Date: 2006-06-03 05:03
Logged In: YES 
user_id=1347065

I used next patch for Python versions 2.3.5 and 2.4.3.
It helps work properly termios module in QNX4.25 and
termios test pass.
msg26317 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2006-07-03 13:40
Logged In: YES 
user_id=849994

Can you test this with Python 2.5b1?
msg26318 - (view) Author: SourceForge Robot (sf-robot) Date: 2006-07-18 02:21
Logged In: YES 
user_id=1312539

This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 14 days (the time period specified by
the administrator of this Tracker).
msg26319 - (view) Author: kbob_ru (kbob_ru) Date: 2006-08-05 15:56
Logged In: YES 
user_id=1347065

Now I have patch for Python-2.5b3
msg26320 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2006-08-06 07:01
Logged In: YES 
user_id=849994

Okay, reopening.
msg114626 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2010-08-22 00:51
Is this still valid or can it be closed?
msg114638 - (view) Author: kbob_ru (kbob_ru) Date: 2010-08-22 02:47
Still valid in version 2.7.
Not tested in verions 3.*

tnx for reminder me.
msg370464 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2020-05-31 14:32
Python 2.7 is no longer supported.

Not sure that QNX is supported in Python 3, but if you want to merge your patch in Python 3 convert it please to a pull request on GitHub.
History
Date User Action Args
2022-04-11 14:56:13adminsetgithub: 42383
2021-12-09 09:59:08iritkatrielsetstatus: pending -> closed
stage: test needed -> resolved
2020-05-31 14:32:36serhiy.storchakasetstatus: open -> pending
nosy: + serhiy.storchaka
messages: + msg370464

2014-02-03 19:47:14BreamoreBoysetnosy: - BreamoreBoy
2010-08-22 02:47:59kbob_rusetmessages: + msg114638
versions: - Python 3.1, Python 3.2
2010-08-22 00:51:52BreamoreBoysetnosy: + BreamoreBoy

messages: + msg114626
versions: + Python 3.1, Python 2.7, Python 3.2, - Python 2.6
2009-03-20 22:30:38ajaksu2setpriority: normal -> low
stage: test needed
type: behavior
versions: + Python 2.6
2005-09-19 09:28:14kbob_rucreate