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 pitrou
Recipients grooverdan, pitrou
Date 2013-02-11.15:19:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1655752375.26768845.1360595958885.JavaMail.root@zimbra10-e2.priv.proxad.net>
In-reply-to <1360577259.03.0.413727229481.issue17181@psf.upfronthosting.co.za>
Content
> This would allow constructs like the following where self can be used
> within the callback. Example:
> 
>         def cb_sni(ssl_sock, server_name, self):
>             self.sniname = server_name
> 
>         self.context.set_servername_callback(cb_sni, self)
> 
> The original functionality can still occur with:
> 
>         self.context.set_servername_callback(cb_sni, self.context)

But you could simply use a closure:

        def cb_sni(ssl_sock, server_name):
            self.sniname = server_name

        self.context.set_servername_callback(cb_sni)
History
Date User Action Args
2013-02-11 15:19:25pitrousetrecipients: + pitrou, grooverdan
2013-02-11 15:19:25pitroulinkissue17181 messages
2013-02-11 15:19:25pitroucreate