Re: [Python-Dev] PEP 376 : Changing the .egg-info structure

2009-05-15 Thread Jeroen Ruigrok van der Werven
-On [20090515 06:59], P.J. Eby (p...@telecommunity.com) wrote: I'd like to reiterate my suggestion that the uninstall record include size and checksum information, ala PEP 262's FILES section. This would allow the uninstall function to validate whether a file has been modified, and thus

Re: [Python-Dev] PEP 376 : Changing the .egg-info structure

2009-05-15 Thread Tarek Ziadé
2009/5/15 P.J. Eby p...@telecommunity.com: At 12:21 AM 5/15/2009 +0200, Tarek Ziadé wrote: Hello I'm proposing this PEP, which has been discussed in Distutils-SIG, for inclusion in Python 2.7 and 3.2 http://www.python.org/dev/peps/pep-0376/ Please comment ! I'd like to reiterate my

Re: [Python-Dev] PEP 376 : Changing the .egg-info structure

2009-05-15 Thread Dirkjan Ochtman
On Fri, May 15, 2009 at 8:32 AM, Jeroen Ruigrok van der Werven asmo...@in-nomine.org wrote: Agreed. Within FreeBSD's ports the installed package registration gets a MD5 hash per file recorded. Size is less interesting though, since essentially this information is encapsulated within the hash.

Re: [Python-Dev] python -m test.regrtest should pass on an installed python

2009-05-15 Thread Nick Coghlan
R. David Murray wrote: So this posting is a general reminder that the tests should not make assumptions about the writabilty of the test directory (or, for that matter, of the CWD). Indeed - the tempfile module is very helpful in that regard. Cheers, Nick. -- Nick Coghlan |

[Python-Dev] Summary of Python tracker Issues

2009-05-15 Thread Python tracker
ACTIVITY SUMMARY (05/08/09 - 05/15/09) Python tracker at http://bugs.python.org/ To view or respond to any of the issues listed below, click on the issue number. Do NOT respond to this message. 2194 open (+34) / 15658 closed (+26) / 17852 total (+60) Open issues with patches: 855

[Python-Dev] doc error in 2.6.2

2009-05-15 Thread Leo Jay
There is a syntax error in the client side code of SocketServer.UDPServer Example in http://docs.python.org/library/socketserver.html: import socket import sys HOST, PORT = localhost data = .join(sys.argv[1:]) Obviously, it should be: HOST, PORT = localhost, -- Leo Jay

Re: [Python-Dev] doc error in 2.6.2

2009-05-15 Thread Aahz
On Sat, May 16, 2009, Leo Jay wrote: There is a syntax error in the client side code of SocketServer.UDPServer Example in http://docs.python.org/library/socketserver.html: Please follow the directions in http://docs.python.org/bugs.html to report this on bugs.python.org -- that ensures that

Re: [Python-Dev] PEP 376 : Changing the .egg-info structure

2009-05-15 Thread P.J. Eby
At 08:32 AM 5/15/2009 +0200, Jeroen Ruigrok van der Werven wrote: Agreed. Within FreeBSD's ports the installed package registration gets a MD5 hash per file recorded. Size is less interesting though, since essentially this information is encapsulated within the hash. Remove one byte from the

Re: [Python-Dev] PEP 376 : Changing the .egg-info structure

2009-05-15 Thread P.J. Eby
At 08:32 AM 5/15/2009 +0200, Tarek Ziadé wrote: 2009/5/15 P.J. Eby p...@telecommunity.com: Ideally, a file with identical size/checksum that belongs to more than one project should be silently left alone, and a file installed by more than one project with *different* size/checksum should be

Re: [Python-Dev] PEP 376 : Changing the .egg-info structure

2009-05-15 Thread Tony Nelson
At 13:52 -0400 05/15/2009, P.J. Eby wrote: At 08:32 AM 5/15/2009 +0200, Jeroen Ruigrok van der Werven wrote: Agreed. Within FreeBSD's ports the installed package registration gets a MD5 hash per file recorded. Size is less interesting though, since essentially this information is encapsulated