[issue11863] Enforce PEP 11 - remove support for legacy systems

2011-07-08 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 638039a4fef3 by Antoine Pitrou in branch 'default': Issue #11863: remove unused file Python/thread_wince.h http://hg.python.org/cpython/rev/638039a4fef3 -- nosy: +python-dev ___ Python

[issue11863] Enforce PEP 11 - remove support for legacy systems

2011-07-08 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 0aa3f90f0830 by Antoine Pitrou in branch 'default': Issue #11863: Remove support for legacy systems deprecated in Python 3.2 http://hg.python.org/cpython/rev/0aa3f90f0830 -- ___ Python

[issue11863] Enforce PEP 11 - remove support for legacy systems

2011-07-08 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- resolution: - fixed stage: needs patch - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11863 ___

[issue11863] Enforce PEP 11 - remove support for legacy systems

2011-04-19 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Issue #11876 has been marked as a duplicate of this issue. -- nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11863

[issue11863] Enforce PEP 11 - remove support for legacy systems

2011-04-19 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: FYI Hurd only supports cthread, without cthread support, Python will not support threads on Hurd anymore. There are two Hurd issues to move from cthread to pthread http://savannah.gnu.org/task/?5487 (opened 5 years ago)

[issue11863] Enforce PEP 11 - remove support for legacy systems

2011-04-19 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11863 ___ ___ Python-bugs-list

[issue11863] Enforce PEP 11 - remove support for legacy systems

2011-04-19 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Python/thread.c contains a reference to a missing file: #ifdef PLAN9_THREADS #include thread_plan9.h #endif But I don't see where PLAN9_THREADS is defined. remove_threads.patch removes these 3 lines. -- There is also an unused

[issue11863] Enforce PEP 11 - remove support for legacy systems

2011-04-19 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Python/thread.c contains a reference to a missing file: #ifdef PLAN9_THREADS #include thread_plan9.h #endif But I don't see where PLAN9_THREADS is defined. remove_threads.patch removes these 3 lines. -- There is also an unused

[issue11863] Enforce PEP 11 - remove support for legacy systems

2011-04-18 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- nosy: +brett.cannon ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11863 ___ ___ Python-bugs-list

[issue11863] Enforce PEP 11 - remove support for legacy systems

2011-04-17 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: PEP 11 calls for removing support for the following systems in 3.3: Name: Systems using Mach C Threads Unsupported in: Python 3.2 Code removed in: Python 3.3 Name: SunOS lightweight processes (LWP)

[issue11863] Enforce PEP 11 - remove support for legacy systems

2011-04-17 Thread Jesús Cea Avión
Jesús Cea Avión j...@jcea.es added the comment: I think I toke care of OSF cleanup already. -- nosy: +jcea ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11863 ___