[issue26893] ValueError exception raised when using IntEnum with an attribute called "name" and @unique decorator

2016-05-04 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue26893] ValueError exception raised when using IntEnum with an attribute called "name" and @unique decorator

2016-05-02 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: -> ethan.furman ___ Python tracker ___

[issue26893] ValueError exception raised when using IntEnum with an attribute called "name" and @unique decorator

2016-05-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1b6581bae5a1 by Ethan Furman in branch '3.5': issue26893: use mro() to examine class heirarchy https://hg.python.org/cpython/rev/1b6581bae5a1 New changeset 7188de6b50ab by Ethan Furman in branch 'default': issue26893: use mro() to examine class

[issue26893] ValueError exception raised when using IntEnum with an attribute called "name" and @unique decorator

2016-04-30 Thread Ethan Furman
Ethan Furman added the comment: Thanks for catching that. -- ___ Python tracker ___ ___ Python-bugs-list

[issue26893] ValueError exception raised when using IntEnum with an attribute called "name" and @unique decorator

2016-04-30 Thread Xiang Zhang
Changes by Xiang Zhang : -- nosy: +xiang.zhang ___ Python tracker ___ ___ Python-bugs-list

[issue26893] ValueError exception raised when using IntEnum with an attribute called "name" and @unique decorator

2016-04-30 Thread Berker Peksag
Berker Peksag added the comment: Looks like 2545bfe0d273 (issue 23486) is the culprit. -- keywords: +3.5regression nosy: +berker.peksag stage: -> needs patch versions: +Python 3.6 ___ Python tracker

[issue26893] ValueError exception raised when using IntEnum with an attribute called "name" and @unique decorator

2016-04-30 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Library (Lib) nosy: +barry, eli.bendersky, ethan.furman ___ Python tracker ___

[issue26893] ValueError exception raised when using IntEnum with an attribute called "name" and @unique decorator

2016-04-30 Thread Julien Enche
New submission from Julien Enche: The linked file fails with the following error : ValueError: duplicate values found in : id -> User.name, name -> User.name This exception was not raised with Python 3.4. -- files: enumtest.py messages: 264554 nosy: Julien Enche priority: normal