Re: [Python-Dev] [Python-checkins] r84166 - python/branches/py3k/Misc/developers.txt

2010-08-17 Thread Benjamin Peterson
2010/8/17 martin.v.loewis : > Author: martin.v.loewis > Date: Wed Aug 18 00:58:42 2010 > New Revision: 84166 > > Log: > Add Ask Solem. > > > Modified: >   python/branches/py3k/Misc/developers.txt > > Modified: python/branches/py3k/Misc/developers.txt > ==

[Python-Dev] PEP 3149 - updated patch

2010-08-17 Thread Barry Warsaw
I've re-merged the py3k trunk to my PEP 3149 branch and uploaded a new diff. For reference, here's the PEP: http://www.python.org/dev/peps/pep-3149/ and the tracker issue: http://bugs.python.org/issue9193 along with the updated patch: http://bugs.python.org/file18558/pep3149.txt a

[Python-Dev] Python 2.6.6 release candidate 2 now available.

2010-08-17 Thread Barry Warsaw
Hello fellow Python enthusiasts, The source tarballs and Windows installers for the second (and hopefully last) Python 2.6.6 release candidate is now available: http://www.python.org/download/releases/2.6.6/ We've had a handful of important fixes since rc1, and of course a huge number of bug

Re: [Python-Dev] Dev FAQ update request for svnmerge

2010-08-17 Thread Terry Reedy
On 8/17/2010 1:45 AM, Senthil Kumaran wrote: On Tue, Aug 17, 2010 at 03:08:31PM +1000, Nick Coghlan wrote: Could someone who knows how it is currently set up suggest a correction to the dev FAQ for svnmerge usage? 2.26 How do I merge between branches? All development occurs under the py3k

Re: [Python-Dev] cProfile and threads

2010-08-17 Thread Daniel Stutzbach
2010/8/17 Kristján Valur Jónsson > These patches are the result of work that we have done in profiling > Stackless Python server applications at runtime, but they apply just as well > to C Python. > > The first patch makes _lsprof, the engine behind cProfile, multi-stack > aware. This allows the

Re: [Python-Dev] Dev FAQ update request for svnmerge

2010-08-17 Thread Steve Holden
On 8/17/2010 1:45 AM, Senthil Kumaran wrote: > On Tue, Aug 17, 2010 at 03:08:31PM +1000, Nick Coghlan wrote: >> Could someone who knows how it is currently set up suggest a >> correction to the dev FAQ for svnmerge usage? > > > 2.26 How do I merge between branches? > > All development occurs u

Re: [Python-Dev] i18n

2010-08-17 Thread Anders Sandvig
On Sat, Aug 14, 2010 at 10:18 AM, Jeroen Ruigrok van der Werven wrote: > I doubt you will be able to localize much with regard to the interpreter. > The only thing that really comes to mind are the error and exception > messages, but you will never be able to localize the errors themselves. The >

Re: [Python-Dev] cProfile and threads

2010-08-17 Thread Nick Coghlan
2010/8/17 Kristján Valur Jónsson : > Yes, this is intentional.  I didn't want to waste effort on writing > documentation > before having exposed this to you.  Sometimes my good ideas turn out to be > not so good and end up being rejected. Cool, I thought it would be something like that. In this c

Re: [Python-Dev] cProfile and threads

2010-08-17 Thread Kristján Valur Jónsson
> -Original Message- > From: python-dev-bounces+kristjan=ccpgames@python.org > [mailto:python-dev-bounces+kristjan=ccpgames@python.org] On > Behalf Of Antoine Pitrou > > Does that mean you're proposing code for inclusion in CPython that can only > be tested with Stackless? > Can'

Re: [Python-Dev] cProfile and threads

2010-08-17 Thread Antoine Pitrou
Ok, I've looked at the patch and it's actually stackless-agnostic. Regards Antoine. On Tue, 17 Aug 2010 12:31:30 +0200 Antoine Pitrou wrote: > On Tue, 17 Aug 2010 09:22:15 + > Kristján Valur Jónsson wrote: > > Hello there. > > I'd like to draw your attention to two feature requests / pat

Re: [Python-Dev] cProfile and threads

2010-08-17 Thread Antoine Pitrou
On Tue, 17 Aug 2010 09:22:15 + Kristján Valur Jónsson wrote: > Hello there. > I'd like to draw your attention to two feature requests / patches that I've > subbmitted: > http://bugs.python.org/issue9609 > http://bugs.python.org/issue9622 > > These patches are the result of work that we have

Re: [Python-Dev] cProfile and threads

2010-08-17 Thread Kristján Valur Jónsson
> -Original Message- > From: Nick Coghlan [mailto:ncogh...@gmail.com] > Sent: 17. ágúst 2010 10:04 > > Both look like good ideas to me (multi-threaded profiling and debugging is > fairly painful and it would be good to be able to do something to improve > that situation). > Indeed. I e

Re: [Python-Dev] cProfile and threads

2010-08-17 Thread Nick Coghlan
2010/8/17 Kristján Valur Jónsson : > Hello there. > > I‘d like to draw your attention to two feature requests / patches that I‘ve > subbmitted: > > http://bugs.python.org/issue9609 > http://bugs.python.org/issue9622 > > These patches are the result of work that we have done in profiling > Stackless

[Python-Dev] cProfile and threads

2010-08-17 Thread Kristján Valur Jónsson
Hello there. I'd like to draw your attention to two feature requests / patches that I've subbmitted: http://bugs.python.org/issue9609 http://bugs.python.org/issue9622 These patches are the result of work that we have done in profiling Stackless Python server applications at runtime, but they app