[Python-Dev] p2p vpn in python?

2007-03-29 Thread Shane Geiger
Is anyone in the Python world considering writing a P2P VPN application in Python (a la Hamachi)? -- Shane Geiger IT Director National Council on Economic Education [EMAIL PROTECTED] | 402-438-8958 | http://www.ncee.net Leading the Campaign for Economic and Financial Literacy begin:vcard f

Re: [Python-Dev] Distutils and -framework on MacOSX

2007-03-29 Thread Greg Ewing
Ronald Oussoren wrote: > What's wrong with adding -framework flags to the end? I do this all the > time and have yet to run into problems. I don't know what's wrong. Sometimes it works for me too, but often it doesn't, and when it doesn't, putting them at the front seems to fix it. Apple's man

[Python-Dev] Get 2.5 changes in now, branch will be frozen soon

2007-03-29 Thread Neal Norwitz
This is a reminder that the 2.5 branch will be frozen early next week. If there are changes you want to get into 2.5.1, they should be checked in within a few days. Be conservative! There will be a 2.5.2, it's better to wait than to have to make a new release for one rushed feature. If you don'

Re: [Python-Dev] Italic text in the manual

2007-03-29 Thread Fred L. Drake, Jr.
On Thursday 29 March 2007 17:48, Collin Winter wrote: > The docs for atexit in py3k [1] are mostly (though not all) in > italics; I can't figure out why, and I'd appreciate if anyone with > stronger latex-foo could take a look. This is now fixed in Py3K, and there are no further occurrances of

Re: [Python-Dev] Italic text in the manual

2007-03-29 Thread Mike Klaas
On 3/29/07, Georg Brandl <[EMAIL PROTECTED]> wrote: > Collin Winter schrieb: > > The docs for atexit in py3k [1] are mostly (though not all) in > > italics; I can't figure out why, and I'd appreciate if anyone with > > stronger latex-foo could take a look. > > This is still the same error as in th

Re: [Python-Dev] Italic text in the manual

2007-03-29 Thread Georg Brandl
Collin Winter schrieb: > On 3/29/07, Fred L. Drake, Jr. <[EMAIL PROTECTED]> wrote: >> On Thursday 08 March 2007 08:42, Martin v. Löwis wrote: >> > Certainly not. In today's copy (8.3.07, 13:30 GMT), this starts >> > between 18.17 and 18.17.1. However, looking at the tex, I cannot >> > find anyth

Re: [Python-Dev] Italic text in the manual

2007-03-29 Thread Collin Winter
On 3/29/07, Fred L. Drake, Jr. <[EMAIL PROTECTED]> wrote: > On Thursday 08 March 2007 08:42, Martin v. Löwis wrote: > > Certainly not. In today's copy (8.3.07, 13:30 GMT), this starts > > between 18.17 and 18.17.1. However, looking at the tex, I cannot > > find anything suspicious. texcheck comp

Re: [Python-Dev] Italic text in the manual

2007-03-29 Thread Fred L. Drake, Jr.
On Thursday 08 March 2007 08:42, Martin v. Löwis wrote: > Certainly not. In today's copy (8.3.07, 13:30 GMT), this starts > between 18.17 and 18.17.1. However, looking at the tex, I cannot > find anything suspicious. texcheck complains about a missing ), > which I added, but it only was a probl

Re: [Python-Dev] Should TemporaryFile() return a wrapper like NamedTemporaryFile()?

2007-03-29 Thread Raghuram Devarakonda
On 3/29/07, Raghuram Devarakonda <[EMAIL PROTECTED]> wrote: > Hi, > > I am looking into the issue http://python.org/sf/1615275 (suggested by > Neal) and added a comment there. I would appreciate it if some one can > check it out and comment on it. Basically, I am wondering if > TemporaryFile() sho

[Python-Dev] Possible bugs in test_struct

2007-03-29 Thread Collin Winter
While converting test_struct to use unittest, I came across these two issues: 1) r51119 by Bob Ippolito added a test case for "SF bug 1530559: struct.pack raises TypeError where it used to convert." (Handy diff at http://svn.python.org/view/python/trunk/Lib/test/test_struct.py?rev=51119&r1=46679&r

[Python-Dev] Should TemporaryFile() return a wrapper like NamedTemporaryFile()?

2007-03-29 Thread Raghuram Devarakonda
Hi, I am looking into the issue http://python.org/sf/1615275 (suggested by Neal) and added a comment there. I would appreciate it if some one can check it out and comment on it. Basically, I am wondering if TemporaryFile() should return a wrapper instance (with "file" member) just like NamedTemp

[Python-Dev] A simplified extended buffer PEP

2007-03-29 Thread Jim Jewett
Greg Ewing wrote: > Carl Banks wrote: > > /* don't define releasebuffer or lockbuffer */ > > /* only objects that manage buffers themselves would define these */ > That's an advantage, but it's a pretty small one ... > the releaser field makes the protocol asymmetrical > and thus harder to reaso

Re: [Python-Dev] Distutils and -framework on MacOSX

2007-03-29 Thread Ronald Oussoren
On 29 Mar, 2007, at 11:37, Greg Ewing wrote: Has anyone found a way of persuading distutils to pass MacOSX -framework options properly when linking? Using extra_link_args doesn't work, because they need to be at the beginning of the command line to work properly, but extra_link_args gets put a

[Python-Dev] Distutils and -framework on MacOSX

2007-03-29 Thread Greg Ewing
Has anyone found a way of persuading distutils to pass MacOSX -framework options properly when linking? Using extra_link_args doesn't work, because they need to be at the beginning of the command line to work properly, but extra_link_args gets put at the end. And extra_compile_args is only used wh