Re: [PythonCE] Shelve -- has anyone used it successfully?

2004-12-07 Thread Mark Doukidis
Hi Ron, I am about to give up on using "shelve" about now. My problem is that after a time I am getting a corrupted shelve. It probably is my own doing :( I cannot copy my XP generated shelve file to PocketPC because the PythonCE build does not include all the db modules. on XP i have one file g

Re: [PythonCE] How to execute a scipt on Python startup

2005-04-12 Thread Mark Doukidis
Try placing your code inside "sitecustomize.py". This is run every time python is started. On 4/13/05, Michael Murdock <[EMAIL PROTECTED]> wrote: > Hello, > > I have a Python script that I import in every script that I write that > imports sys and then calls sys.path.append() to set up a few loca

[PythonCE] ImportError problem

2005-07-07 Thread Mark Doukidis
econd Edition ? - Does DLL loading consume special resources (me think maybe) ? - Do XDAs have special requirements ? Any leads appreciated Mark Doukidis PythonCE obtained from: http://fore.validus.com/~kashtan/ Device details below: Xda IIs = About - Windows Mobile 2003 Seco

Re: [PythonCE] ImportError problem

2005-07-07 Thread Mark Doukidis
; background can offer some comment in "PYTHONIC" terms about "virtual memory space" and DLL issues. Thanks for the pointer Ulrich. Mark Doukidis ___ PythonCE mailing list PythonCE@python.org http://mail.python.org/mailman/listinfo/pythonce

Re: [PythonCE] Can't Get My Import Module Command to Work Properly

2006-05-16 Thread Mark Doukidis
Try using "sitecustomize.py". This is the setup I used for Python2.3: # sitecustomize.py to be placed in python library directory. import os import sys if os.name == 'ce': sys.path.append("\My Documents\Personal") Hope this is useful. Mark Doukidis On 5/17

Re: [PythonCE] Tkinter captures the little "X" close window button?

2008-03-09 Thread Mark Doukidis
> PythonCE mailing list > PythonCE@python.org > http://mail.python.org/mailman/listinfo/pythonce > Hi Jim, Been a while but looking at some old code, I have a work around. What I have done (and others) is to HIDE the titlebar from view. eg: sizex, sizey

[PythonCE] PyCrypto binaries - where are they ?

2008-04-10 Thread Mark Doukidis
r PyCrypto binaries for PythonCE but they seem to have evaporated. A July 2007 post mentioned they would be available from http://www.voidspace.org.uk/ but I cant find them. Are they available or is the recommendation to "roll your own" ? Mark Doukidis

Re: [PythonCE] Import inbox error

2009-12-08 Thread Mark Doukidis
Hi Mani It looks like you are trying to import a Symbian module on a Windows CE platform. I think "appuifw" is a PYS60 module (python wrapper for Symbian Series 60 devices) You should look for another GUI for a Windows CE device. I know Tkinter works but their are other efforts for CE. regards