This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Jiajun Huang
Recipients Jiajun Huang
Date 2016-12-13.13:47:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1481636868.17.0.0411235027553.issue28961@psf.upfronthosting.co.za>
In-reply-to
Content
code in `_Call.__new__`:

      def __new__(cls, value=(), name=None, parent=None, two=False,                                                                    
      ¦   ¦   ¦   from_kall=True):                                                                                                     
      ¦   name = ''                                                                                                                    
      ¦   args = ()                                                                                                                    
      ¦   kwargs = {}                                                                                                                  
      ¦   _len = len(value)                                                                                                            
      ¦   if _len == 3:                                                                                                                
              ...

the parameter `name` had been override since the function starts. so whatever name is, it's been ignored. Is it a bug? or something else?
History
Date User Action Args
2016-12-13 13:47:48Jiajun Huangsetrecipients: + Jiajun Huang
2016-12-13 13:47:48Jiajun Huangsetmessageid: <1481636868.17.0.0411235027553.issue28961@psf.upfronthosting.co.za>
2016-12-13 13:47:48Jiajun Huanglinkissue28961 messages
2016-12-13 13:47:47Jiajun Huangcreate