I tried to write simple http server on my PDA.
--
import SimpleHTTPServer as Handler
import BaseHTTPServer as Server
h = Handler.SimpleHTTPRequestHandler
s = Server.HTTPServer(('localhost', 80), h)
s.serve_forever()
--
It works on Desktop, bu
My hx2110 has 64 MB onboard, I have installed PythonCE on MMS. I have only 35
MB free main memory.
I already tryed to free memory up to 45 MB, but it didn't help.
___
PythonCE mailing list
PythonCE@python.org
http://mail.python.org/mailman/listinfo/pytho
It's true that wx uses a lot of memory, but 35 MB should be enough I
think... I'm using it quite comfortably on an iPaq H2200 which has
64MB total memory I think.
I've never actually looked into how much it actually uses though. I'm
planning to make a 'minimal' wx configuration that only exposes
c
I tryed to "import wx" on interactive shell but got message "ImportError: Dll
load failed: Not enough storage is available to complete this operation."
I wonder how many memory does wx consume? I had 35 MB on PDA free.
___
PythonCE mailing list
PythonCE