[issue21231] Issue a python 3 warning when old style classes are defined.

2015-02-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> rejected status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailin

[issue21231] Issue a python 3 warning when old style classes are defined.

2014-10-04 Thread Ezio Melotti
Changes by Ezio Melotti : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue21231] Issue a python 3 warning when old style classes are defined.

2014-10-04 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as "won't fix" or what? -- nosy: +BreamoreBoy status: pending -> open ___ Python tracker ___ _

[issue21231] Issue a python 3 warning when old style classes are defined.

2014-06-01 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue21231] Issue a python 3 warning when old style classes are defined.

2014-05-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I agree that this is not a good idea. Old-style classes are legal in Python 2 and this syntax is legal in Python 3 where it means new-style classes and in most cases there is no difference between new-style and old-style classes. -- nosy: +serhiy.sto

[issue21231] Issue a python 3 warning when old style classes are defined.

2014-04-20 Thread Benjamin Peterson
Benjamin Peterson added the comment: As I said on irc, I predict this will be extremely spammy not only on the stdlib but also on dependencies which people have no control over. -- ___ Python tracker _

[issue21231] Issue a python 3 warning when old style classes are defined.

2014-04-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: Your changes in ceval.c introduce a bug (missing braces). Besides, I'm not sure it's a good idea. What if you're extending a class provided by a third-party library? (just because it's an old-style class doesn't mean it won't work fine under 3.x) -- no

[issue21231] Issue a python 3 warning when old style classes are defined.

2014-04-20 Thread Ezio Melotti
Changes by Ezio Melotti : -- components: +Interpreter Core nosy: +ezio.melotti stage: -> patch review ___ Python tracker ___ ___ Pyth

[issue21231] Issue a python 3 warning when old style classes are defined.

2014-04-14 Thread Alex Gaynor
New submission from Alex Gaynor: This will assist in porting applications from Python2 to Python3. -- files: old-style-classes.diff keywords: patch messages: 216273 nosy: alex priority: normal severity: normal status: open title: Issue a python 3 warning when old style classes are define