Re: [Python-Dev] ndPython: I NEED TO TALK WITH ONE OF THE PYTHON CORE DEVELOPERS

2009-06-25 Thread Martin v. Löwis
> Can you tell me which modules provide to > decode and execute a .pyc file ? The bytecode loader in in marshal.c; the byte code interpreter is in ceval.c. Also consider frameobject.c and codeobject.c. HTH, Martin ___ Python-Dev mailing list Python-Dev@

Re: [Python-Dev] Syntax for parsing tuples/lists into C arrays

2009-06-25 Thread Martin v. Löwis
> Comments? I don't think there is any need to support that in the Python core. Instead, if you find such a functionality useful, feel free to implement it yourself, and share it with others. Regards, Martin ___ Python-Dev mailing list Python-Dev@pytho

Re: [Python-Dev] Syntax for parsing tuples/lists into C arrays

2009-06-25 Thread Aahz
On Thu, Jun 25, 2009, Yingjie Lan wrote: > > The current C API does not support directly parsing into C > arrays. Parsing tuples into C arrays can be greatly facilitated > with the introduction of a natural extension of the current parsing > syntax. I'd like to propose a syntax extension to facilit

[Python-Dev] Syntax for parsing tuples/lists into C arrays

2009-06-25 Thread Yingjie Lan
The current C API does not support directly parsing into C arrays. Parsing tuples into C arrays can be greatly facilitated with the introduction of a natural extension of the current parsing syntax. I'd like to propose a syntax extension to facilitate that kind of tasks, and would appreciate yo

Re: [Python-Dev] trace module options.

2009-06-25 Thread Edward Peschko
> On-topic would have been a disussion of which of these features would > be useful for the trace module to be built-in, how to best provide them, > along with an offer to produce a patch. Ok, fair enough - which of the features listed (indentation matching stacklevel, output to a file (or files w

Re: [Python-Dev] Python for Windows??

2009-06-25 Thread Nick Coghlan
Tim Golden wrote: > The Python docs have a section on running Python > on Windows. This is the online version: > > http://docs.python.org/using/windows.html > > The .chm version should be in c:\python31\doc\python31.chm Which is more easily accessed via the start menu entry Python creates for

Re: [Python-Dev] trace module options.

2009-06-25 Thread Martin v. Löwis
> Of course I could program the above, but I was > hoping to avoid duplicated effort if someone has > already programmed options like this.. In this specific form, the question is off-topic for python-dev, and better asked on python-list (in particular since it has a wider audience). On-topic wou