[Python-Dev] PEP 3145 (With Contents)

2009-09-08 Thread Eric Pruitt
Alright, I will re-submit with the contents pasted. I never use double backquotes as I think them rather ugly; that is the work of an editor or some automated program in the chain. Plus, it also messed up my line formatting and now I have lines with one word on them... Anyway, the contents of PEP 3

Re: [Python-Dev] PEP 3145

2009-09-08 Thread Benjamin Peterson
2009/9/7 Eric Pruitt : > Hello all, > > I have been working on adding asynchronous I/O to the Python > subprocess module as part of my Google Summer of Code project. Now > that I have finished documenting and pruning the code, I present PEP > 3145 for its inclusion into the Python core code. Any an

Re: [Python-Dev] PEP 3144: IP Address Manipulation Library for the Python Standard Library

2009-09-08 Thread Peter Moody
Howdy, So I've made most of the suggested changes here and put up a release of ipaddr. Do folks here consider this pep is final (enough) for submission or is there more work to be done? Cheers, /peter On Thu, Aug 27, 2009 at 6:52 AM, Peter Moody wrote: > Howdy folks, > > the reference code has b

Re: [Python-Dev] Numeric alignment issue with PEP 3101

2009-09-08 Thread Eric Smith
> Mark Dickinson wrote: >> I think the alignment for Decimal *does* need to be changed, though. It >> currently left-aligns by default (my fault: I just blindly followed PEP >> 3101 >> without thinking too hard about it). I'd like to fix this for 3.2 and >> 2.7; I'm >> not sure whether it's too

Re: [Python-Dev] [Distutils] Static metadata using setup.cfg

2009-09-08 Thread Nick Coghlan
Chris Withers wrote: > David Lyon wrote: >> On Tue, 08 Sep 2009 09:18:50 +0100, Chris Withers >> >> wrote: >>> >>> If Python had a packaging system *and* used it for the standard >>> library, then things like this wouldn't be a problem... >>> The setup.cfg could just say "requires sqlite greater

Re: [Python-Dev] [Distutils] Static metadata using setup.cfg

2009-09-08 Thread Tarek Ziadé
2009/9/8 Chris Withers : >> I suggested that a "requires" section could easily do this, something >> along the lines of: >> >> [Requires] >> stdlib=sqlite>=1.5 > > Tarek, How are requirements spelled for packages in your current setup.cfg? Sorry, that's another problem we are dealing with here e.g

Re: [Python-Dev] [Distutils] Static metadata using setup.cfg

2009-09-08 Thread Chris Withers
David Lyon wrote: On Tue, 08 Sep 2009 09:18:50 +0100, Chris Withers wrote: If Python had a packaging system *and* used it for the standard library, then things like this wouldn't be a problem... The setup.cfg could just say "requires sqlite greater than version x.y.z", and if it was in the s

Re: [Python-Dev] compiling python2.5 on linux under wine

2009-09-08 Thread tinku99
aren't you better off just cross compiling under mingw? You don't even really need to do that... you can just dynamically load the brebuilt windows python libraries in your wine apps... wine is for running windows apps on linux, not for cross compiling... wine itself uses the mingw cross compile

Re: [Python-Dev] Numeric alignment issue with PEP 3101

2009-09-08 Thread Eric Smith
Mark Dickinson wrote: On Mon, Sep 7, 2009 at 11:10 PM, Eric Smith wrote: Hmm, I never noticed that. At this point, I think changing the formatting for any types would break code, so we should just change the documentation to reflect how currently works. I think the alignment for Decimal *does*

Re: [Python-Dev] Numeric alignment issue with PEP 3101

2009-09-08 Thread Mark Dickinson
On Mon, Sep 7, 2009 at 11:10 PM, Eric Smith wrote: > Hmm, I never noticed that. At this point, I think changing the formatting > for any types would break code, so we should just change the documentation > to reflect how currently works. I think the alignment for Decimal *does* need to be changed,