[issue14675] make distutils.ccompiler.CCompiler an abstract class

2012-10-31 Thread Ramchandra Apte
Ramchandra Apte added the comment: buump. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14675 ___ ___ Python-bugs-list mailing list

[issue14675] make distutils.ccompiler.CCompiler an abstract class

2012-10-31 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- resolution: - wont fix stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14675 ___

[issue14675] make distutils.ccompiler.CCompiler an abstract class

2012-04-28 Thread Ramchandra Apte
Ramchandra Apte maniandra...@gmail.com added the comment: Well, there is no practical advantage at all. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14675 ___

[issue14675] make distutils.ccompiler.CCompiler an abstract class

2012-04-28 Thread Ramchandra Apte
Ramchandra Apte maniandra...@gmail.com added the comment: Please change the priorty of this bug to low. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14675 ___

[issue14675] make distutils.ccompiler.CCompiler an abstract class

2012-04-28 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Well, if there is no reason for this change, it should be closed. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14675 ___

[issue14675] make distutils.ccompiler.CCompiler an abstract class

2012-04-26 Thread Ramchandra Apte
Changes by Ramchandra Apte maniandra...@gmail.com: -- assignee: - eric.araujo components: +Distutils nosy: +eric.araujo, tarek versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14675

[issue14675] make distutils.ccompiler.CCompiler an abstract class

2012-04-26 Thread Ramchandra Apte
New submission from Ramchandra Apte maniandra...@gmail.com: Make distutils.ccompiler.CCompiler an abstract class by making it inherit from abc.ABCMeta. Thanks -- messages: 159369 nosy: ramchandra.apte priority: normal severity: normal status: open title: make

[issue14675] make distutils.ccompiler.CCompiler an abstract class

2012-04-26 Thread Ramchandra Apte
Ramchandra Apte maniandra...@gmail.com added the comment: Sorry, distutils.ccompiler.CCompiler should have abc.ABCMeta as the metaclass. (for example like this) class CCompiler(metaclass = abc.ABCMeta): ... Thanks -- ___ Python tracker

[issue14675] make distutils.ccompiler.CCompiler an abstract class

2012-04-26 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: distutils is closed to improvements, it only gets bugfixes. distutils2/packaging can get new features. Can you tell more about the use case or motivation for this request? -- components: +Distutils2 -Distutils nosy: +alexis versions: