[issue31947] names=None case is not handled by EnumMeta._create_ method

2018-05-15 Thread Ethan Furman
Ethan Furman added the comment: Thank you, Anentropic! -- assignee: -> ethan.furman resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue31947] names=None case is not handled by EnumMeta._create_ method

2018-05-15 Thread Ethan Furman
Ethan Furman added the comment: New changeset c50e5b1f1f2501f697aa52d9c9a440bdeced7006 by Ethan Furman (Miss Islington (bot)) in branch '3.6': bpo-31947: remove None default for names param in Enum._create_ GH-4288 (GH-6485)

[issue31947] names=None case is not handled by EnumMeta._create_ method

2018-04-16 Thread miss-islington
miss-islington added the comment: New changeset 3bcca488fe753ae8cef9178e32237f84927c938e by Miss Islington (bot) in branch '3.7': bpo-31947: remove None default for names param in Enum._create_ (GH-4288)

[issue31947] names=None case is not handled by EnumMeta._create_ method

2018-04-15 Thread miss-islington
Change by miss-islington : -- keywords: +patch pull_requests: +6183 ___ Python tracker ___

[issue31947] names=None case is not handled by EnumMeta._create_ method

2018-04-15 Thread miss-islington
Change by miss-islington : -- pull_requests: +6184 ___ Python tracker ___

[issue31947] names=None case is not handled by EnumMeta._create_ method

2018-04-15 Thread Ethan Furman
Ethan Furman added the comment: New changeset b8e21f12891382bc0aac5ccd13dcb4a990d65e0a by Ethan Furman (anentropic) in branch 'master': bpo-31947: remove None default for names param in Enum._create_ (GH-4288)

[issue31947] names=None case is not handled by EnumMeta._create_ method

2018-03-26 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- components: +Library (Lib) nosy: +barry, eli.bendersky, ethan.furman stage: -> patch review versions: -Python 3.4, Python 3.5 ___ Python tracker

[issue31947] names=None case is not handled by EnumMeta._create_ method

2017-11-05 Thread Paul
New submission from Paul : It seems to me that this method should not have names=None default value in signature, because that case is not handled, nor is it described as a possible value in the docstring. Seems like maybe a copy and paste from __call__, which has