[PythonCE] Install

2006-01-29 Thread geoff
ok trying again from scratch as I must be missing something.

On the download site:

http://sourceforge.net/project/showfiles.php?group_id=104228

there are five files available for download.

I have tried using just the:

  PythonCE-2.3.5-20051223-setup.exe

and running from a windoze box which syncs with my ipaq handheld.

This works fine for simple command line python stuff.

I have been advised here last week to use easygui which in turn uses 
Tkinter.

I have tried copying earlier versions of a Tkinter-Files.zip as 
suggested on the site:

http://tkinter.unpythonic.net/wiki/How_20to_20install_20Tkinter

THIS DOES NOT WORK

Has anyone installed the latest image successfully?

Is there more to this than running the exe file from the desktop machine?

Do I need to do more with the other four files on the latest download

Please help if you can. Python is so easy on a desktop and I would 
really like to use my one off application when out of the office.

Thanks again


Geoff

___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce


[PythonCE] Bug in threading module

2006-01-29 Thread Дмитрий Беляев
I wrote small program using "threading" module. Inherited 
"threading.Thread" class and started new thread. Started the program and 
found that process is terminated when main program is finished even if 
there are active non-daemonic threads.
Checked this program at desktop Python24 and it was executing until 
thread has finished.
___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce


Re: [PythonCE] 3. Install (geoff)

2006-01-29 Thread javirosa
I had similar difficulties actually. Perhaps I'm just not using Tkinter
right but I just get a no module named Tkinter. I unziped the
Tkinter-Files into the toplevel directory on my PDA just after installing
the latest PythonCE.

> Send PythonCE mailing list submissions to
>   pythonce@python.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>   http://mail.python.org/mailman/listinfo/pythonce
> or, via email, send a message with subject or body 'help' to
>   [EMAIL PROTECTED]
>
> You can reach the person managing the list at
>   [EMAIL PROTECTED]
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of PythonCE digest..."
>
>
> Today's Topics:
>
>1.  Ideas for New User Please (Dmitry Belyaev)
>2. Re: Ideas for New User Please (Peter Dembinski)
>3. Install (geoff)
>
>
> --
>
> Message: 1
> Date: Sat, 28 Jan 2006 17:35:02 +0300
> From: Dmitry Belyaev <[EMAIL PROTECTED]>
> Subject: [PythonCE]  Ideas for New User Please
> To: pythonce@python.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=windows-1251; format=flowed
>
> There is console for Pocket PC. There is PocketGCC package at
> http://pocketgcc.sourceforge.net/down.html and it has 3 cab files. One
> of them is console for PPC.
> I found that raw_input() switches to (or creates) pocket console for
> input.
>
>
> --
>
> Message: 2
> Date: Sat, 28 Jan 2006 16:22:10 +0100
> From: "Peter Dembinski" <[EMAIL PROTECTED]>
> Subject: Re: [PythonCE] Ideas for New User Please
> To: "Dmitry Belyaev" <[EMAIL PROTECTED]>, pythonce@python.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii
>
> On Sat, 28 Jan 2006 15:35:02 +0100, Dmitry Belyaev <[EMAIL PROTECTED]>
> wrote:
>
>> There is console for Pocket PC. There is PocketGCC package at
>> http://pocketgcc.sourceforge.net/down.html and it has 3 cab files. One
>> of them is console for PPC.
>
> I found console for PocketPC at symbolictools.de.
>
> --
> Wysokie Obroty Magazyn - nowy miesiecznik motoryzacyjny. Pierwszy numer
> juz w sprzedazy.
> Wiecej informacji na: http://auto.gazeta.pl/auto/0,0.html
>
>
> --
>
> Message: 3
> Date: Sun, 29 Jan 2006 18:05:01 +1000
> From: geoff <[EMAIL PROTECTED]>
> Subject: [PythonCE] Install
> To: pythonce@python.org
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> ok trying again from scratch as I must be missing something.
>
> On the download site:
>
> http://sourceforge.net/project/showfiles.php?group_id=104228
>
> there are five files available for download.
>
> I have tried using just the:
>
>   PythonCE-2.3.5-20051223-setup.exe
>
> and running from a windoze box which syncs with my ipaq handheld.
>
> This works fine for simple command line python stuff.
>
> I have been advised here last week to use easygui which in turn uses
> Tkinter.
>
> I have tried copying earlier versions of a Tkinter-Files.zip as
> suggested on the site:
>
> http://tkinter.unpythonic.net/wiki/How_20to_20install_20Tkinter
>
> THIS DOES NOT WORK
>
> Has anyone installed the latest image successfully?
>
> Is there more to this than running the exe file from the desktop machine?
>
> Do I need to do more with the other four files on the latest download
>
> Please help if you can. Python is so easy on a desktop and I would
> really like to use my one off application when out of the office.
>
> Thanks again
>
>
> Geoff
>
>
>
> --
>
> ___
> PythonCE mailing list
> PythonCE@python.org
> http://mail.python.org/mailman/listinfo/pythonce
>
>
> End of PythonCE Digest, Vol 30, Issue 26
> 
>


___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce


Re: [PythonCE] Bug in threading module

2006-01-29 Thread Jason Adams
I was under the impression that threading wasn't fully supported on
pythonCE and the thread class is just a dummy class.  Has this changed
or am I just plain wrong?

On 1/29/06, Дмитрий Беляев <[EMAIL PROTECTED]> wrote:
> I wrote small program using "threading" module. Inherited
> "threading.Thread" class and started new thread. Started the program and
> found that process is terminated when main program is finished even if
> there are active non-daemonic threads.
> Checked this program at desktop Python24 and it was executing until
> thread has finished.
> ___
> PythonCE mailing list
> PythonCE@python.org
> http://mail.python.org/mailman/listinfo/pythonce
>
___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pythonce