[issue5639] Support TLS SNI extension in ssl module

2010-05-23 Thread Daniel Black
Daniel Black dan...@cacert.org added the comment: msg106323 - Author: Antoine Pitrou (pitrou) Date: 2010-05-22 20:17 I quite like your proposed alternative here. Not sure when/if I'll get to implement this. msg106324 - Author: Jean-Paul Calderone (exarkun) Date: 2010-05-22 22:17 Sorry I

[issue8793] IDLE crashes on opening invalid file

2010-05-23 Thread royf
New submission from royf roy.d@gmail.com: 1. Create a file containing this line: '\xdk' 2. Open the file for editing in IDLE 2.6.4. Banner: Python 2.6.4 (r264:75708, Oct 26 2009, 08:23:19) [MSC v.1500 32 bit (Intel)] on win32 3. Run Module (F5) - Bug#1: no error is shown 4. Run Module 7

[issue8794] Python, reynaldo bendijo wants to chat

2010-05-23 Thread reynaldo
New submission from reynaldo renbe...@gmail.com: I've been using Google Talk and thought you might like to try it out. We can use it to call each other for free over the internet. Here's an invitation to download Google Talk. Give it a try!

[issue8794] spam

2010-05-23 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- resolution: - invalid status: open - closed title: Python, reynaldo bendijo wants to chat - spam ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8794

[issue8794] spam

2010-05-23 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8794 ___ ___ Python-bugs-list mailing list

[issue8791] spam

2010-05-23 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- title: See Hamster on your Google homepage - spam ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8791 ___

[issue8790] spam

2010-05-23 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- title: See Hamster on your Google homepage - spam ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8790 ___

[issue8789] spam

2010-05-23 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- title: See Hamster on your Google homepage - spam ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8789 ___

[issue1368368] prompt_user_passwd() in FancyURLopener masks 401 Unauthorized error page

2010-05-23 Thread Senthil Kumaran
Changes by Senthil Kumaran orsent...@gmail.com: -- assignee: - orsenthil stage: unit test needed - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1368368 ___

[issue8795] Error sending utf8 strings over syslog udp protocol

2010-05-23 Thread Arie Skliarouk
New submission from Arie Skliarouk sklia...@gmail.com: I am trying to send utf8 strings over syslog/udp and get strange error: Traceback (most recent call last): File /usr/lib/python2.6/logging/handlers.py, line 788, in emit self.socket.sendto(msg, self.address) TypeError: sendto() takes

[issue8795] Error sending utf8 strings over syslog udp protocol

2010-05-23 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- assignee: - vinay.sajip nosy: +vinay.sajip ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8795 ___

[issue5639] Support TLS SNI extension in ssl module

2010-05-23 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: ctx = ssl.SSLContext(ssl.PROTOCOL_TLSv1) ctx.set_tlsext_host_name(foo.bar) Well, the hostname should be specific to a connection, so I'm not sure it makes sense to set it on the context. (besides, the OpenSSL APIs only allow it to be set on

[issue8792] xmlrpclib compatibility issues with Apache XML-RPC library

2010-05-23 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +loewis versions: +Python 2.7, Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8792 ___

[issue6900] Sub-optimal Locate button behaviour in Windows CHM file

2010-05-23 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: OK, I've now deactivated the Binary TOC setting in Sphinx' repo; it will be used for Python when I release a new version. -- resolution: - fixed status: open - closed ___ Python tracker

[issue8188] Unified hash for numeric types.

2010-05-23 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Committed the hash changes in r81486. This commit just changes the method for computing hash values; it doesn't include the changes to the decimal module that make Decimal instances comparable with Fraction instances. --

[issue1628205] socket.readline() interface doesn't handle EINTR properly

2010-05-23 Thread Jean-Paul Calderone
Jean-Paul Calderone exar...@twistedmatrix.com added the comment: Backported to release26-maint in r81488. -- nosy: +exarkun ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1628205 ___

[issue8354] siginterrupt with flag=False is reset when signal received

2010-05-23 Thread vila
Changes by vila v.ladeuil+bugs-pyt...@free.fr: -- nosy: +vila ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8354 ___ ___ Python-bugs-list mailing

[issue1628205] socket.readline() interface doesn't handle EINTR properly

2010-05-23 Thread vila
Changes by vila v.ladeuil+bugs-pyt...@free.fr: -- nosy: +vila ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1628205 ___ ___ Python-bugs-list

[issue5639] Support TLS SNI extension in ssl module

2010-05-23 Thread Jean-Paul Calderone
Jean-Paul Calderone exar...@twistedmatrix.com added the comment: Sorry I don't like this as much. I believe following the RFC for TLS SNI should be implicit and not something the programmer need to put effort into achieving. I acknowledge this approach does go against some explicit

[issue5639] Support TLS SNI extension in ssl module

2010-05-23 Thread Jean-Paul Calderone
Jean-Paul Calderone exar...@twistedmatrix.com added the comment: Nope, I checked before making the suggestion. There's an SSL_CTX_ version of this API (in addition to the SSL_ version). Sorry, I just checked again, and it seems you're right. Perhaps I saw

[issue8611] Python3 doesn't support locale different than utf8 and an non-ASCII path (POSIX)

2010-05-23 Thread Andrew Svetlov
Andrew Svetlov andrew.svet...@gmail.com added the comment: I'm skeptical about surrogates particularly for that problem. From my perspective the solution is only to use native unicode support for windows file operation functions. Conversions utf-8 - mbcs - utf8 will loose encoding information

[issue1436346] yday in datetime module

2010-05-23 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: Attaching a documentation patch. -- Added file: http://bugs.python.org/file17446/issue1436346-doc.diff ___ Python tracker rep...@bugs.python.org

[issue1436346] yday in datetime module

2010-05-23 Thread Alexander Belopolsky
Changes by Alexander Belopolsky belopol...@users.sourceforge.net: -- assignee: belopolsky - components: +Documentation keywords: +needs review versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1436346

[issue7983] The encoding map from Unicode to CP932 is different from that of Windows'

2010-05-23 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +haypo, lemburg ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7983 ___ ___ Python-bugs-list

[issue8796] Deprecate codecs.open()

2010-05-23 Thread STINNER Victor
New submission from STINNER Victor victor.stin...@haypocalc.com: codecs module (and codecs.open() function) was added to Python 2.0. codecs.open() creates a StreamReaderWriter object which use two other objects: StreamReader and StreamWriter. Python 2.6 and 3.0 have a new API: the io module.

[issue8796] Deprecate codecs.open()

2010-05-23 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +lemburg, loewis ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8796 ___ ___ Python-bugs-list

[issue8446] buildbot: DeprecationWarning not raised for icglue (test_py3kwarn.TestStdlibRemovals)

2010-05-23 Thread Bill Janssen
Bill Janssen bill.jans...@gmail.com added the comment: Not sure I understand this patch. Either the icglue module is removed in python 3, in which case it should raise the deprecation warning, or it is not, in which case it should be removed from the list of modules checked in test_py3kwarn.

[issue1436346] yday in datetime module

2010-05-23 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Committed in r81489. Thanks! -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1436346 ___

[issue8750] Many of MutableSet's methods assume that the other parameter is not self

2010-05-23 Thread Raymond Hettinger
Changes by Raymond Hettinger rhettin...@users.sourceforge.net: -- resolution: - accepted ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8750 ___

[issue1368368] prompt_user_passwd() in FancyURLopener masks 401 Unauthorized error page

2010-05-23 Thread Ray.Allen
Ray.Allen ysj@gmail.com added the comment: Since urllib.urlopen() is removed in py3k, and is intended to be replaced by urllib2.urlopen(), I think we'd better just leave as it is. -- nosy: +ysj.ray ___ Python tracker rep...@bugs.python.org