[issue8436] set.__init__ accepts keyword args

2010-04-18 Thread Raymond Hettinger
Raymond Hettinger added the comment: r80202, r80203, r80204, and r80205 -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue8436] set.__init__ accepts keyword args

2010-04-17 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue8436] set.__init__ accepts keyword args

2010-04-17 Thread Raymond Hettinger
Raymond Hettinger added the comment: If you submit a patch, be sure to include a test that covers both set.__init__() and frozenset.__init__(). Model the code are the equivalent checks in Modules/itertoolsmodule.c -- priority: -> low stage: -> needs patch versions: +Python 2.6, Pyt

[issue8436] set.__init__ accepts keyword args

2010-04-17 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thx, will look at it when I get a chance. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue8436] set.__init__ accepts keyword args

2010-04-17 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- assignee: -> rhettinger nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue8436] set.__init__ accepts keyword args

2010-04-17 Thread Eugene Kapun
New submission from Eugene Kapun : >>> list().__init__(a=0) Traceback (most recent call last): File "", line 1, in TypeError: 'a' is an invalid keyword argument for this function >>> set().__init__(a=0) -- components: Interpreter Core messages: 103427 nosy: abacabadabacaba severity: n