Re: [Python-Dev] Another mercurial repo

2010-02-23 Thread Barry Warsaw
On Feb 23, 2010, at 01:04 AM, Dirkjan Ochtman wrote: On Tue, Feb 23, 2010 at 00:57, Martin v. Löwis mar...@v.loewis.de wrote: Can I use that to filter out distutils2 commits? Well, I don't think we'll do commit emails for distutils2 or unittest2, only for benchmarks (to python-checkins,

Re: [Python-Dev] Another mercurial repo

2010-02-23 Thread Barry Warsaw
On Feb 23, 2010, at 01:56 AM, Tarek Ziadé wrote: Let me know if it fits your maintenance process. if so I'll ask for a mailing list for this particular repo. Ask and ye shall receive :) -Barry signature.asc Description: PGP signature ___ Python-Dev

Re: [Python-Dev] Mercurial move?

2010-02-23 Thread Frank Wierzbicki
On Mon, Feb 22, 2010 at 6:12 PM, Guido van Rossum gu...@python.org wrote: In that case congrats on beating us to the punch! Let us know how it goes. Will, do, thanks! -Frank ___ Python-Dev mailing list Python-Dev@python.org

Re: [Python-Dev] Another mercurial repo

2010-02-23 Thread Dirkjan Ochtman
On Tue, Feb 23, 2010 at 08:32, Barry Warsaw ba...@python.org wrote: I think we should have commit emails for all projects hosted on hg.python.org.  Those emails should perhaps go to different mailing lists, but post-commit emails are a great way for community members to follow the developments

[Python-Dev] Using git to checkout Python

2010-02-23 Thread Neil Schemenauer
For those interested, I updated my instructions for using the git repositories on svn.python.org. They are now on the Python wiki: http://wiki.python.org/moin/Git Regards, Neil ___ Python-Dev mailing list Python-Dev@python.org

Re: [Python-Dev] 3.1 and 2.7 break format() when used with complex (sometimes)

2010-02-23 Thread Eric Smith
The root cause of this problem is object.__format__, which is basically: def __format__(self, fmt): return str(self).__format__(fmt) So here we're changing the type of the object (to str) but still keeping the same format string. That doesn't make any sense: the format string is type

[Python-Dev] Platform extension for distutils on other interpreters than CPython

2010-02-23 Thread Maciej Fijalkowski
Hello. I would like to have a feature on platform module (or sys or somewhere) that can tell distutils or distutils2 that this platform (be it PyPy or Jython) is not able to compile any C module. The purpose of this is to make distutils bail out in more reasonable manner than a compilation error

Re: [Python-Dev] Platform extension for distutils on other interpreters than CPython

2010-02-23 Thread Daniel Stutzbach
On Tue, Feb 23, 2010 at 12:50 PM, Maciej Fijalkowski fij...@gmail.comwrote: I would like to have a feature on platform module (or sys or somewhere) that can tell distutils or distutils2 that this platform (be it PyPy or Jython) is not able to compile any C module. The purpose of this is to

Re: [Python-Dev] Platform extension for distutils on other interpreters than CPython

2010-02-23 Thread Frank Wierzbicki
On Tue, Feb 23, 2010 at 1:50 PM, Maciej Fijalkowski fij...@gmail.com wrote: Hello. I would like to have a feature on platform module (or sys or somewhere) that can tell distutils or distutils2 that this platform (be it PyPy or Jython) is not able to compile any C module. The purpose of this

Re: [Python-Dev] Platform extension for distutils on other interpreters than CPython

2010-02-23 Thread Tarek Ziadé
On Tue, Feb 23, 2010 at 1:50 PM, Maciej Fijalkowski fij...@gmail.com wrote: Hello. I would like to have a feature on platform module (or sys or somewhere) that can tell distutils or distutils2 that this platform (be it PyPy or Jython) is not able to compile any C module. The purpose of this

Re: [Python-Dev] Platform extension for distutils on other interpreters than CPython

2010-02-23 Thread Tarek Ziadé
On Tue, Feb 23, 2010 at 2:03 PM, Daniel Stutzbach dan...@stutzbachenterprises.com wrote: On Tue, Feb 23, 2010 at 12:50 PM, Maciej Fijalkowski fij...@gmail.com wrote: I would like to have a feature on platform module (or sys or somewhere) that can tell distutils or distutils2 that this

Re: [Python-Dev] Platform extension for distutils on other interpreters than CPython

2010-02-23 Thread Tarek Ziadé
On Tue, Feb 23, 2010 at 2:10 PM, Tarek Ziadé ziade.ta...@gmail.com wrote: On Tue, Feb 23, 2010 at 1:50 PM, Maciej Fijalkowski fij...@gmail.com wrote: Hello. I would like to have a feature on platform module (or sys or somewhere) that can tell distutils or distutils2 that this platform (be it

Re: [Python-Dev] Platform extension for distutils on other interpreters than CPython

2010-02-23 Thread Maciej Fijalkowski
On Tue, Feb 23, 2010 at 2:27 PM, Tarek Ziadé ziade.ta...@gmail.com wrote: On Tue, Feb 23, 2010 at 2:10 PM, Tarek Ziadé ziade.ta...@gmail.com wrote: On Tue, Feb 23, 2010 at 1:50 PM, Maciej Fijalkowski fij...@gmail.com wrote: Hello. I would like to have a feature on platform module (or sys or

Re: [Python-Dev] Platform extension for distutils on other interpreters than CPython

2010-02-23 Thread Tarek Ziadé
On Tue, Feb 23, 2010 at 2:44 PM, Maciej Fijalkowski fij...@gmail.com wrote: On Tue, Feb 23, 2010 at 2:27 PM, Tarek Ziadé ziade.ta...@gmail.com wrote: On Tue, Feb 23, 2010 at 2:10 PM, Tarek Ziadé ziade.ta...@gmail.com wrote: On Tue, Feb 23, 2010 at 1:50 PM, Maciej Fijalkowski fij...@gmail.com

[Python-Dev] Question for you

2010-02-23 Thread Connor, Craig A.
Hello, Dave; My name is Craig Connor and I am a senior s/w developer at Northrop Grumman. I have a question for you. I have installed Boost (via the Installer), and stored it into my C Drive inside a dir called: C:\boost_1_42 I also installed the Boost Jam into a directory called:

Re: [Python-Dev] Question for you

2010-02-23 Thread Michael Foord
Hello Connor, I think you have the wrong email address - this is Python-dev, an email list for the development *of* Python. All the best, Michael Foord On 23/02/2010 15:41, Connor, Craig A. wrote: Hello, Dave; My name is Craig Connor and I am a senior s/w developer at Northrop

Re: [Python-Dev] PEP 385 progress report

2010-02-23 Thread Benjamin Peterson
2010/2/23 Dirkjan Ochtman dirk...@ochtman.nl: On Tue, Feb 23, 2010 at 01:06, Martin v. Löwis mar...@v.loewis.de wrote: I thought we decided not to have a 2to3 repository at all, but let this live in the Python trunk exclusively. That would be fine with me, I just remembered that Benjamin