Re: [Python-Dev] bytearray and array.array are not thread-safe

2008-07-07 Thread Antoine
> Unfortunately, it's also a significant change at this point. I > personally won't have time to provide a patch, but I think a patch > is needed before the last beta. IOW, the issue should become a > release blocker. Agreed. Unfortunately I don't have much time to write a patch either. Perhaps i

Re: [Python-Dev] buildbots

2008-07-07 Thread Antoine Pitrou
Hello, As someone who could (perhaps) (potentially) provide a buildbot machine, there are several questions which need answering before I take a decision: - are more buildbots needed and if so, which kinds of platforms/architectures? - for which software? Python itself? third-party apps and libr

Re: [Python-Dev] buildbots

2008-07-07 Thread Grig Gheorghiu
On Mon, Jul 7, 2008 at 5:39 AM, Antoine Pitrou <[EMAIL PROTECTED]> wrote: > > > - are more buildbots needed and if so, which kinds of platforms/architectures? I can't really answer that question for the python code buildbot farm, but for the Pybots community project, the platforms we currently hav

Re: [Python-Dev] Community buildbots and Python release quality metrics

2008-07-07 Thread Grig Gheorghiu
On Sun, Jul 6, 2008 at 2:09 PM, Grig Gheorghiu <[EMAIL PROTECTED]> wrote: > I'll send a message to the pybots mailing list asking people whose > buildbots are turned off if they're still interested in running them. > Negative or no answers will mean we can remove them from the farm. > OK, I poste

[Python-Dev] __module__ not found on ported Python

2008-07-07 Thread Pree Raj
Hi, I am trying to port Python to ThreadX. I have managed to get the prompt. However when I try "import sys" or any built in module I get an error __import__ not found. initmain() in the Initialization code is commented out at present because of some errors. Could it be because of this ? Also, I

Re: [Python-Dev] __module__ not found on ported Python

2008-07-07 Thread Brett Cannon
On Mon, Jul 7, 2008 at 1:48 PM, Pree Raj <[EMAIL PROTECTED]> wrote: [SNIP] > Also, I would like to know which are the MUST HAVE built in modules to be > included for normal working of my ported version of Python. You can look at sys.builtin_module_names to see what CPython compiles in. Otherwise y

Re: [Python-Dev] __module__ not found on ported Python

2008-07-07 Thread Pree Raj
Thanks Brett. I have been able to do initmain() now. However, if I do "import sys" from the python prompt I still get ImportError: __import__ not found I am not sure where the initialization is going wrong for this error to show up. Can someone please help. On Mon, Jul 7, 2008 at 2:15 PM,

Re: [Python-Dev] __module__ not found on ported Python

2008-07-07 Thread Martin v. Löwis
> ImportError: __import__ not found > I am not sure where the initialization is going wrong for this error to > show up. > Can someone please help. This isn't really the right list to ask for help, at least without studying some source code prior to posting. The specific error message is produced