[issue1206] logging/__init__.py

2007-09-27 Thread Vinay Sajip
Vinay Sajip added the comment: Fix checked into trunk: r58272 -- nosy: +vsajip resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ __

[issue1210] imaplib does not run under Python 3

2007-09-27 Thread Raghuram Devarakonda
Changes by Raghuram Devarakonda: -- nosy: +draghuram __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue1205] urllib fail to read URL contents, urllib2 crash Python

2007-09-27 Thread Guido van Rossum
Guido van Rossum added the comment: > In my opinion, Python urllib "should" be more practical and > provide a way to read this kind of page. [quotes mine] Totally agreed. Someone "should" submit a patch. __ Tracker <[EMAIL PROTECTED]>

[issue1210] imaplib does not run under Python 3

2007-09-27 Thread Raghuram Devarakonda
Raghuram Devarakonda added the comment: Just to further understand the issue, I added "imaplib.Debug=5" and here is the output preceding the exception stack trace(I replaced the real IMAP server name) *** 20:19.52 imaplib version 2.58 20:19.52 new IMAP4 connection, tag=LOLD 20:

[issue1211] cleanup patch for 3.0 tutorial/interpreter.rst

2007-09-27 Thread Peter Harris
New submission from Peter Harris: Proposed cleanup patch for tutorial/interpreter.rst -- components: Documentation files: interpreter.diff messages: 56164 nosy: scav severity: normal status: open title: cleanup patch for 3.0 tutorial/interpreter.rst versions: Python 3.0

[issue1212] 3.0 tutorial/introduction.rst mentions 'long'

2007-09-27 Thread Peter Harris
New submission from Peter Harris: Remove reference to 'long' in tutorial/introduction.rst. Patch attached. -- components: Documentation files: introduction.diff messages: 56165 nosy: scav severity: normal status: open title: 3.0 tutorial/introduction.rst mentions 'long' versions: Python

[issue1213] 3.0 tutorial/classes.rst patch

2007-09-27 Thread Peter Harris
New submission from Peter Harris: I think this wording is a little clearer and removes implied reference to earlier Python versions, while still giving a simplistic tutorial-level idea of what the MRO is. YMMV, so please disregard if I've made it worse. -- components: Documentation files

[issue1145] Allow str.join to join non-string types (as per PEP 3100)

2007-09-27 Thread Thomas Lee
Thomas Lee added the comment: Is there anything else you need from me for this one Guido? __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing

[issue1214] Timeout in CGIXMLRPCRequestHandler under IIS

2007-09-27 Thread steenie
New submission from steenie: Using CGIXMLRPCRequestHandler results in a timeout if running behind Internet Information Server/CGI. Maybe there is no eof on sys.stdin under IIS and python continues to read even if there is no more data available. The same runs without problems under Apache/CGI. Re

[issue1215] Python hang when catching a segfault

2007-09-27 Thread Miki Tebeka
New submission from Miki Tebeka: The following code hangs Python: #!/usr/bin/env python import segfault import signal from os import _exit from sys import stdout def handler(signal, stackframe): print "OUCH" stdout.flush() _exit(1) if __name__ == "__main__": from sys import arg

[issue1216] Python2.5.1 fails to compile under VC.NET2002 ( 7.0 )

2007-09-27 Thread Karthik Rajagopalan
New submission from Karthik Rajagopalan: Hi, We see following compiler error when 'Python2.5.1' is compiled under VC.NET 2002 ( 7.0.9466 ). This happens in 'pythoncore' project: -- Build started: Project: pythoncore, Configuration: Release Win32 -- Compiling... zutil.c

[issue1145] Allow str.join to join non-string types (as per PEP 3100)

2007-09-27 Thread Guido van Rossum
Guido van Rossum added the comment: Patience? :-) Seriously, I'd lost track of this. It's now submitted: Committed revision 58276. __ Tracker <[EMAIL PROTECTED]> __ _

[issue1145] Allow str.join to join non-string types (as per PEP 3100)

2007-09-27 Thread Guido van Rossum
Changes by Guido van Rossum: -- resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing l

[issue1211] cleanup patch for 3.0 tutorial/interpreter.rst

2007-09-27 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue1212] 3.0 tutorial/introduction.rst mentions 'long'

2007-09-27 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue1213] 3.0 tutorial/classes.rst patch

2007-09-27 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue1214] Timeout in CGIXMLRPCRequestHandler under IIS

2007-09-27 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue1218] Restrict Google search to docs when in the docs subtree?

2007-09-27 Thread Skip Montanaro
New submission from Skip Montanaro: It was reported to [EMAIL PROTECTED] today that Thomas Heller's pyhelp.cgi script is not available (yields 403 Forbidden). For the time being I removed that link from http://www.python.org/doc/. Still, there is the Google search box at the top of the page. Al

[issue1217] infinite loop in re module

2007-09-27 Thread Brett Cannon
Brett Cannon added the comment: I am not convinced this an infinite loop but more of a poor-performing regex over a large string. You have three greedy quantifiers in that regex. That means the first one is going to consume the entire file, and then you begin back-off looking for '://'. Once t

[issue1217] infinite loop in re module

2007-09-27 Thread Andres Riancho
Andres Riancho added the comment: Have you tested it ? Is the re.findall() finishing it's work ? I left it working for 5 minutes or more, and got no response. Cheers, __ Tracker <[EMAIL PRO

[issue1217] infinite loop in re module

2007-09-27 Thread Andres Riancho
Andres Riancho added the comment: I think this should be reopened. The findall call is running for 3 hours now. I think that it's a clear case of an infinite loop. __ Tracker <[EMAIL PROTECT

[issue1205] urllib fail to read URL contents, urllib2 crash Python

2007-09-27 Thread jos
jos added the comment: Attached a patch for this problem. This one just ignores the buggy chunk-size and close the connection. As gagenellina said earlier, this might not be a good way to fix this, but I could not come up w

[issue1217] infinite loop in re module

2007-09-27 Thread Brett Cannon
Brett Cannon added the comment: If you chop out a bunch of the text it finishes fine. I more succinct example that triggers the infinite recursion is necessary before I will believe this is not just because the regex has horrible performance thanks to its backtracking requirements.

[issue1218] Restrict Google search to docs when in the docs subtree?

2007-09-27 Thread Martin v. Löwis
Martin v. Löwis added the comment: Website issues are not tracked in this tracker. See http://wiki.python.org/moin/PythonWebsiteCreatingNewTickets -- nosy: +loewis __ Tracker <[EMAIL PROTECTED]>