Re: [Python-Dev] New PyPI broken package editing

2005-03-31 Thread Walter Dörwald
Martin v. Löwis wrote: Walter Dörwald wrote: The register command in 2.4 (and current CVS) simply does a value = str(value) in post_to_server() so the encoded bytes sent depend on the default encoding. Would it be sufficient to change this to value = unicode(value).encode(utf-8) Indeed. I

Re: [Python-Dev] Pickling instances of nested classes

2005-03-31 Thread Walter Dörwald
Martin v. Löwis wrote: Walter Dörwald wrote: So is this change wanted? useful? implementable with reasonable effort? Or just not worth it? I think it is just not worth it. This means I won't attempt to implement it. I think I defined originally the __module__ attribute for classes to support

python.org/sf URLs aren't working? Re: [Python-Dev] Weekly Python Patch/Bug Summary

2005-03-31 Thread Jeff Epler
I get 500 Internal Server Error messages when I try to access the URLs in the recent patch summary. Is this happening to anybody else? Jeff pgpOUL7H5Sr5t.pgp Description: PGP signature ___ Python-Dev mailing list Python-Dev@python.org

Re: python.org/sf URLs aren't working? Re: [Python-Dev] Weekly Python Patch/Bug Summary

2005-03-31 Thread Oleg Broytmann
On Thu, Mar 31, 2005 at 09:37:27AM -0600, Jeff Epler wrote: I get 500 Internal Server Error messages when I try to access the URLs in the recent patch summary. Is this happening to anybody else? Just visited http://python.org/sf/754022 to test - no problems, normal redirect to the SF

Re: python.org/sf URLs aren't working? Re: [Python-Dev] Weekly Python Patch/Bug Summary

2005-03-31 Thread Kurt B. Kaiser
Jeff Epler [EMAIL PROTECTED] writes: I get 500 Internal Server Error messages when I try to access the URLs in the recent patch summary. Yes, it seems that the python.org/sf/ special facility is having a problem. IDs over 1 100 000 or so don't work. I sent a message to [EMAIL PROTECTED]

Re: python.org/sf URLs aren't working? Re: [Python-Dev] Weekly Python Patch/Bug Summary

2005-03-31 Thread Skip Montanaro
Jeff == Jeff Epler [EMAIL PROTECTED] writes: Jeff I get 500 Internal Server Error messages when I try to access the Jeff URLs in the recent patch summary. Jeff Is this happening to anybody else? Yup. I don't have time to look into the problem, however... Here's a traceback:

Re: python.org/sf URLs aren't working? Re: [Python-Dev] Weekly Python Patch/Bug Summary

2005-03-31 Thread Guido van Rossum
I forwarded this to MvL, who wrote the code; he'll look into it but probably not before Sunday. On Thu, 31 Mar 2005 11:37:40 -0500, Kurt B. Kaiser [EMAIL PROTECTED] wrote: Jeff Epler [EMAIL PROTECTED] writes: I get 500 Internal Server Error messages when I try to access the URLs in the

Re: [Python-Dev] Pickling instances of nested classes

2005-03-31 Thread Samuele Pedroni
Walter Dörwald wrote: Samuele Pedroni wrote: Walter Dörwald wrote: [User cases for pickling instances of nested classes] So is this change wanted? useful? implementable with reasonable effort? Or just not worth it? notice that in this cases often metaclasses are involved or could easely be, so

Re: python.org/sf URLs aren't working? Re: [Python-Dev] Weekly Python Patch/Bug Summary

2005-03-31 Thread Martin v. Löwis
Skip Montanaro wrote: Here's a traceback: Traceback (most recent call last): File /usr/local/apache/cgi-bin/sf, line 82, in ? log_type(report, tracker) File /usr/local/apache/cgi-bin/sf, line 42, in log_type os.unlink(idsfile+.lck) OSError: [Errno 2] No such

Re: python.org/sf URLs aren't working? Re: [Python-Dev] Weekly Python Patch/Bug Summary

2005-03-31 Thread Martin v. Löwis
Guido van Rossum wrote: I forwarded this to MvL, who wrote the code; he'll look into it but probably not before Sunday. Actually, now that I saw that it is a permission problem, it turned out to be fixable quite easily. Regards, Martin ___ Python-Dev

Re: python.org/sf URLs aren't working? Re: [Python-Dev] Weekly Python Patch/Bug Summary

2005-03-31 Thread Jeff Epler
It's working again for me now. thanks! Jeff pgpVnAYyEVx3l.pgp Description: PGP signature ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe:

Re: [Python-Dev] RE: [Python-checkins] python/dist/src/Lib/logging handlers.py, 1.19, 1.19.2.1

2005-03-31 Thread Anthony Baxter
On Friday 01 April 2005 07:00, Raymond Hettinger wrote: Tag: release24-maint handlers.py Log Message: Added optional encoding argument to File based handlers and improved error handling for SysLogHandler Are you sure you want to backport an API change and new feature? What