Re: [Python-Dev] Indentation oddness...

2009-05-30 Thread Dino Viehland
Unfortunately my problem is the opposite one - trying to emulate what compile does for IronPython rather than just trying to make some code compile. So adding newlines doesn't help me. But this case isn't really that important - it was just a wacky corner case I ran into while trying to get

[Python-Dev] [RELEASED] Python 3.1 Release Candidate 1

2009-05-30 Thread Benjamin Peterson
On behalf of the Python development team, I'm happy to announce the first release candidate of Python 3.1. Python 3.1 focuses on the stabilization and optimization of the features and changes that Python 3.0 introduced. For example, the new I/O system has been rewritten in C for speed. File

[Python-Dev] looking for some people to talk with about Python development

2009-05-30 Thread carmstr3
Hello, My name is Chandler Armstrong and I'm investigating environments of collaboration. I'm a PhD candidate at the University of Illinois, Urbana-Champaign, specialized in internet research and science technology studies. I'm generally interested in development methods overall, and

[Python-Dev] cleanup before 3.1 is released

2009-05-30 Thread Neal Norwitz
Has anyone run valgrind/purify and pychecker/pylint on the 3.1 code recently? Both sets of tools should be used before the final release so we can fix any obvious problems. n ___ Python-Dev mailing list Python-Dev@python.org

Re: [Python-Dev] cleanup before 3.1 is released

2009-05-30 Thread Georg Brandl
Neal Norwitz schrieb: Has anyone run valgrind/purify and pychecker/pylint on the 3.1 code recently? Both sets of tools should be used before the final release so we can fix any obvious problems. Do pychecker/pylint work on 3.x code? Gerog -- Thus spake the Lord: Thou shalt indent with

[Python-Dev] [Sphinx] GSoC project announcement

2009-05-30 Thread Wojciech Walczak
Hi, guys, just a short introduction of one of this year's GSoC PSF projects: I am implementing a support for per-paragraph comments and user/developer interface for submitting/committing fixes in Sphinx[1]. In case you are interesed in adding your 2 cents (or more) by commenting on my

Re: [Python-Dev] Survey on DVCS usage and experience

2009-05-30 Thread Greg Ewing
Antoine Pitrou wrote: you can't be sure all the responders are over 18. Actually, they might even not be human beings! (hint: I'm not) Not over 18, or not a human being? -- Greg ___ Python-Dev mailing list Python-Dev@python.org

Re: [Python-Dev] Indentation oddness...

2009-05-30 Thread Greg Ewing
Robert Kern wrote: The 'single' mode, which is used for the REPL, is a bit different than 'exec', which is used for modules. This difference lets you insert blank lines of whitespace into a function definition without exiting the definition. All that means is that the REPL needs to keep