From tlesher at gmail.com Mon Dec 7 19:14:03 2009 From: tlesher at gmail.com (Tim Lesher) Date: Mon, 7 Dec 2009 13:14:03 -0500 Subject: [PythonCE] PyCon 2010 Message-ID: <9613db600912071014w1ede9f68tfa511dd87bd4047f@mail.gmail.com> Are any PythonCE users or developers going to be at Pycon this year? If so, any interest in sprinting on PythonCE patches? -- Tim Lesher -------------- next part -------------- An HTML attachment was scrubbed... URL: From majafriend at gmail.com Tue Dec 8 15:40:33 2009 From: majafriend at gmail.com (mani kandan) Date: Tue, 8 Dec 2009 20:10:33 +0530 Subject: [PythonCE] Import inbox error Message-ID: <549a9ada0912080640hcc703b4i26dc73e367a583ca@mail.gmail.com> I am new to this forum and pythonCE please help me with this issue.I downloaded and installed pythonCE on my device and when i tried to run the program import inbox, appuifw box = inbox.Inbox() query = appuifw.query(u"Search for:", "text").lower() hits = [] ids = [] for sms_id in box.sms_messages(): msg = box.content(sms_id).lower() if msg.find(query) != -1: hits.append(msg[:25]) ids.append(sms_id) index = appuifw.selection_list(hits, 1) if index >= 0: appuifw.note(box.content(ids[index])) it shows me Import error:No module named inbox. I not able to figure out how to include the particular file. -- ALWAYS KEEP SMILING FOR U EVER, G.MANIKANDAN -------------- next part -------------- An HTML attachment was scrubbed... URL: From mdoukidis at gmail.com Wed Dec 9 02:15:40 2009 From: mdoukidis at gmail.com (Mark Doukidis) Date: Wed, 9 Dec 2009 09:15:40 +0800 Subject: [PythonCE] Import inbox error In-Reply-To: <549a9ada0912080640hcc703b4i26dc73e367a583ca@mail.gmail.com> References: <549a9ada0912080640hcc703b4i26dc73e367a583ca@mail.gmail.com> Message-ID: <8d8511040912081715r751ff502p1f9aa5d50760b697@mail.gmail.com> 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 mark On Tue, Dec 8, 2009 at 10:40 PM, mani kandan wrote: > I am new to this forum and pythonCE please help me with this issue.I > downloaded and installed pythonCE on my device and when i tried to run the > program > > > import inbox, appuifw > > box = inbox.Inbox() > query = appuifw.query(u"Search for:", "text").lower() > > hits = [] > ids = [] > for sms_id in box.sms_messages(): > ????? msg = box.content(sms_id).lower() > ????? if msg.find(query) != -1: > ?????????? hits.append(msg[:25]) > ?????????? ids.append(sms_id) > > index = appuifw.selection_list(hits, 1) > if index >= 0: > ??????? appuifw.note(box.content(ids[index])) > > > it shows me Import error:No module named inbox. > > I not able to figure out how to include the particular file. > > -- > ALWAYS KEEP SMILING > > FOR U EVER, > > ? ? G.MANIKANDAN > > _______________________________________________ > PythonCE mailing list > PythonCE at python.org > http://mail.python.org/mailman/listinfo/pythonce > > From majafriend at gmail.com Wed Dec 9 05:48:23 2009 From: majafriend at gmail.com (mani kandan) Date: Wed, 9 Dec 2009 10:18:23 +0530 Subject: [PythonCE] Import inbox error In-Reply-To: <2a0271150912080906q64443559tf23c5b8cfed372e8@mail.gmail.com> References: <549a9ada0912080640hcc703b4i26dc73e367a583ca@mail.gmail.com> <2a0271150912080906q64443559tf23c5b8cfed372e8@mail.gmail.com> Message-ID: <549a9ada0912082048w389340f7o318551956003f6a3@mail.gmail.com> Yeah you are rite juan.I'm trying to include an unavailabe header file.But can you please help me with where can i download the required. On Tue, Dec 8, 2009 at 10:36 PM, Juan Pedro Fisanotti wrote: > 2009/12/8 mani kandan > >> I am new to this forum and pythonCE please help me with this issue.I >> downloaded and installed pythonCE on my device and when i tried to run the >> program >> >> >> import inbox, appuifw >> >> box = inbox.Inbox() >> query = appuifw.query(u"Search for:", "text").lower() >> >> hits = [] >> ids = [] >> for sms_id in box.sms_messages(): >> msg = box.content(sms_id).lower() >> if msg.find(query) != -1: >> hits.append(msg[:25]) >> ids.append(sms_id) >> >> index = appuifw.selection_list(hits, 1) >> if index >= 0: >> appuifw.note(box.content(ids[index])) >> >> >> it shows me Import error:No module named inbox. >> >> I not able to figure out how to include the particular file. >> >> -- >> ALWAYS KEEP SMILING >> >> FOR U EVER, >> >> G.MANIKANDAN >> >> _______________________________________________ >> PythonCE mailing list >> PythonCE at python.org >> http://mail.python.org/mailman/listinfo/pythonce >> >> > I'm not working with PythonCE at this moment, but that error is very > simple: "inbox" is a module that you are trying to use, but is not installed > on your system. Is not part of the standard library, so you must find and > install it by yourself. Is like trying to use a software on your pc that has > never been installed ;-) > > PS: sorry if my english isn't correct, I'm from Argentina :D > -- > fisa - Juan Pedro Fisanotti > -- ALWAYS KEEP SMILING FOR U EVER, G.MANIKANDAN -------------- next part -------------- An HTML attachment was scrubbed... URL: From majafriend at gmail.com Wed Dec 9 05:50:46 2009 From: majafriend at gmail.com (mani kandan) Date: Wed, 9 Dec 2009 10:20:46 +0530 Subject: [PythonCE] Import inbox error In-Reply-To: <8d8511040912081715r751ff502p1f9aa5d50760b697@mail.gmail.com> References: <549a9ada0912080640hcc703b4i26dc73e367a583ca@mail.gmail.com> <8d8511040912081715r751ff502p1f9aa5d50760b697@mail.gmail.com> Message-ID: <549a9ada0912082050y65193479lcff2b44a66cf59f3@mail.gmail.com> Hi Mark, As you said "appuifw" is a PYS60 module so i cant include those in my windows CE.But "appuifw" is not my major concern.I need that "inbox" header file.Can u please guide me where can i download that. On Wed, Dec 9, 2009 at 6:45 AM, Mark Doukidis wrote: > 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 > mark > > On Tue, Dec 8, 2009 at 10:40 PM, mani kandan wrote: > > I am new to this forum and pythonCE please help me with this issue.I > > downloaded and installed pythonCE on my device and when i tried to run > the > > program > > > > > > import inbox, appuifw > > > > box = inbox.Inbox() > > query = appuifw.query(u"Search for:", "text").lower() > > > > hits = [] > > ids = [] > > for sms_id in box.sms_messages(): > > msg = box.content(sms_id).lower() > > if msg.find(query) != -1: > > hits.append(msg[:25]) > > ids.append(sms_id) > > > > index = appuifw.selection_list(hits, 1) > > if index >= 0: > > appuifw.note(box.content(ids[index])) > > > > > > it shows me Import error:No module named inbox. > > > > I not able to figure out how to include the particular file. > > > > -- > > ALWAYS KEEP SMILING > > > > FOR U EVER, > > > > G.MANIKANDAN > > > > _______________________________________________ > > PythonCE mailing list > > PythonCE at python.org > > http://mail.python.org/mailman/listinfo/pythonce > > > > > -- ALWAYS KEEP SMILING FOR U EVER, G.MANIKANDAN -------------- next part -------------- An HTML attachment was scrubbed... URL: From sini.makela at gmail.com Wed Dec 9 19:54:25 2009 From: sini.makela at gmail.com (=?ISO-8859-1?Q?Sini_M=E4kel=E4?=) Date: Wed, 09 Dec 2009 20:54:25 +0200 Subject: [PythonCE] Import inbox error In-Reply-To: <549a9ada0912082050y65193479lcff2b44a66cf59f3@mail.gmail.com> References: <549a9ada0912080640hcc703b4i26dc73e367a583ca@mail.gmail.com> <8d8511040912081715r751ff502p1f9aa5d50760b697@mail.gmail.com> <549a9ada0912082050y65193479lcff2b44a66cf59f3@mail.gmail.com> Message-ID: <4B1FF261.2080505@gmail.com> Hi, > As you said "appuifw" is a PYS60 module so i cant include those in my > windows CE.But "appuifw" is not my major concern.I need that "inbox" > header file.Can u please guide me where can i download that. "inbox" is also a Python extension for S60, so you cannot use it with PythonCE just like that. Sorry, this is probably not the answer you were looking for, but the sad truth. - Sini > On Wed, Dec 9, 2009 at 6:45 AM, Mark Doukidis > wrote: > > 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 > mark > > On Tue, Dec 8, 2009 at 10:40 PM, mani kandan > wrote: > > I am new to this forum and pythonCE please help me with this issue.I > > downloaded and installed pythonCE on my device and when i tried > to run the > > program > > > > > > import inbox, appuifw > > > > box = inbox.Inbox() > > query = appuifw.query(u"Search for:", "text").lower() > > > > hits = [] > > ids = [] > > for sms_id in box.sms_messages(): > > msg = box.content(sms_id).lower() > > if msg.find(query) != -1: > > hits.append(msg[:25]) > > ids.append(sms_id) > > > > index = appuifw.selection_list(hits, 1) > > if index >= 0: > > appuifw.note(box.content(ids[index])) > > > > > > it shows me Import error:No module named inbox. > > > > I not able to figure out how to include the particular file. > > > > -- > > ALWAYS KEEP SMILING > > > > FOR U EVER, > > > > G.MANIKANDAN > > > > _______________________________________________ > > PythonCE mailing list > > PythonCE at python.org > > http://mail.python.org/mailman/listinfo/pythonce > > > > > > > > > -- > ALWAYS KEEP SMILING > > FOR U EVER, > > G.MANIKANDAN > > > ------------------------------------------------------------------------ > > _______________________________________________ > PythonCE mailing list > PythonCE at python.org > http://mail.python.org/mailman/listinfo/pythonce From majafriend at gmail.com Thu Dec 10 05:53:00 2009 From: majafriend at gmail.com (mani kandan) Date: Thu, 10 Dec 2009 10:23:00 +0530 Subject: [PythonCE] Import inbox error In-Reply-To: <549a9ada0912092052j78e05d67l4435d9fa5cef6ec6@mail.gmail.com> References: <549a9ada0912080640hcc703b4i26dc73e367a583ca@mail.gmail.com> <8d8511040912081715r751ff502p1f9aa5d50760b697@mail.gmail.com> <549a9ada0912082050y65193479lcff2b44a66cf59f3@mail.gmail.com> <4B1FF261.2080505@gmail.com> <549a9ada0912092052j78e05d67l4435d9fa5cef6ec6@mail.gmail.com> Message-ID: <549a9ada0912092053x39ff5de1i72463305fb2f6c23@mail.gmail.com> On Thu, Dec 10, 2009 at 12:24 AM, Sini M?kel? wrote: > Hi, > > > >> > >>"inbox" is also a Python extension for S60, so you cannot use it with > PythonCE just like that. > > >>Sorry, this is probably not the answer you were looking for, but the sad > truth. > > yeah Sini this is a sad truth for me.But can you please suggest me any > other extension of pythonCE that can be used to access the sms inbox. > > > On Wed, Dec 9, 2009 at 6:45 AM, Mark Doukidis > mdoukidis at gmail.com>> wrote: >> >> 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 >> mark >> >> On Tue, Dec 8, 2009 at 10:40 PM, mani kandan > > wrote: >> > I am new to this forum and pythonCE please help me with this issue.I >> > downloaded and installed pythonCE on my device and when i tried >> to run the >> > program >> > >> > >> > import inbox, appuifw >> > >> > box = inbox.Inbox() >> > query = appuifw.query(u"Search for:", "text").lower() >> > >> > hits = [] >> > ids = [] >> > for sms_id in box.sms_messages(): >> > msg = box.content(sms_id).lower() >> > if msg.find(query) != -1: >> > hits.append(msg[:25]) >> > ids.append(sms_id) >> > >> > index = appuifw.selection_list(hits, 1) >> > if index >= 0: >> > appuifw.note(box.content(ids[index])) >> > >> > >> > it shows me Import error:No module named inbox. >> > >> > I not able to figure out how to include the particular file. >> > >> > -- >> > ALWAYS KEEP SMILING >> > >> > FOR U EVER, >> > >> > G.MANIKANDAN >> > >> > _______________________________________________ >> > PythonCE mailing list >> > PythonCE at python.org >> >> > http://mail.python.org/mailman/listinfo/pythonce >> > >> > >> >> >> >> >> -- >> ALWAYS KEEP SMILING >> >> FOR U EVER, >> G.MANIKANDAN >> >> >> ------------------------------------------------------------------------ >> >> >> _______________________________________________ >> PythonCE mailing list >> PythonCE at python.org >> http://mail.python.org/mailman/listinfo/pythonce >> > > -- ALWAYS KEEP SMILING FOR U EVER, G.MANIKANDAN -- ALWAYS KEEP SMILING FOR U EVER, G.MANIKANDAN -------------- next part -------------- An HTML attachment was scrubbed... URL: From martinechols at verizon.net Thu Dec 10 15:03:32 2009 From: martinechols at verizon.net (Martin Echols) Date: Thu, 10 Dec 2009 09:03:32 -0500 Subject: [PythonCE] Import inbox error In-Reply-To: <549a9ada0912092053x39ff5de1i72463305fb2f6c23@mail.gmail.com> References: <549a9ada0912080640hcc703b4i26dc73e367a583ca@mail.gmail.com> <8d8511040912081715r751ff502p1f9aa5d50760b697@mail.gmail.com> <549a9ada0912082050y65193479lcff2b44a66cf59f3@mail.gmail.com> <4B1FF261.2080505@gmail.com> <549a9ada0912092052j78e05d67l4435d9fa5cef6ec6@mail.gmail.com> <549a9ada0912092053x39ff5de1i72463305fb2f6c23@mail.gmail.com> Message-ID: <003701ca79a1$8f0622c0$ad126840$@net> Hi Mani, I am not sure if this would help, but the ?ctypes? or the ?comtypes? library for pythonce on windows ce PDAs might help you out. It allows you to access dll libraries. If you are trying to access email on the wince device check out: http://pythonce.sourceforge.net/Wikka/PIMs which shows you how to use a module called pypoom to access mail resources. Regards, Martin From: pythonce-bounces+martinechols=verizon.net at python.org [mailto:pythonce-bounces+martinechols=verizon.net at python.org] On Behalf Of mani kandan Sent: Wednesday, December 09, 2009 11:53 PM To: PythonCE at python.org Subject: [PythonCE] Import inbox error On Thu, Dec 10, 2009 at 12:24 AM, Sini M?kel? wrote: Hi, >>"inbox" is also a Python extension for S60, so you cannot use it with PythonCE just like that. >>Sorry, this is probably not the answer you were looking for, but the sad truth. yeah Sini this is a sad truth for me.But can you please suggest me any other extension of pythonCE that can be used to access the sms inbox. On Wed, Dec 9, 2009 at 6:45 AM, Mark Doukidis > wrote: 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 mark On Tue, Dec 8, 2009 at 10:40 PM, mani kandan > wrote: > I am new to this forum and pythonCE please help me with this issue.I > downloaded and installed pythonCE on my device and when i tried to run the > program > > > import inbox, appuifw > > box = inbox.Inbox() > query = appuifw.query(u"Search for:", "text").lower() > > hits = [] > ids = [] > for sms_id in box.sms_messages(): > msg = box.content(sms_id).lower() > if msg.find(query) != -1: > hits.append(msg[:25]) > ids.append(sms_id) > > index = appuifw.selection_list(hits, 1) > if index >= 0: > appuifw.note(box.content(ids[index])) > > > it shows me Import error:No module named inbox. > > I not able to figure out how to include the particular file. > > -- > ALWAYS KEEP SMILING > > FOR U EVER, > > G.MANIKANDAN > > _______________________________________________ > PythonCE mailing list > PythonCE at python.org > http://mail.python.org/mailman/listinfo/pythonce > > -- ALWAYS KEEP SMILING FOR U EVER, G.MANIKANDAN ------------------------------------------------------------------------ _______________________________________________ PythonCE mailing list PythonCE at python.org http://mail.python.org/mailman/listinfo/pythonce -- ALWAYS KEEP SMILING FOR U EVER, G.MANIKANDAN -- ALWAYS KEEP SMILING FOR U EVER, G.MANIKANDAN -------------- next part -------------- An HTML attachment was scrubbed... URL: From majafriend at gmail.com Thu Dec 10 15:36:46 2009 From: majafriend at gmail.com (mani kandan) Date: Thu, 10 Dec 2009 20:06:46 +0530 Subject: [PythonCE] Import inbox error In-Reply-To: <549a9ada0912100626y30ce6694x8fa25e30ae659b5f@mail.gmail.com> References: <549a9ada0912080640hcc703b4i26dc73e367a583ca@mail.gmail.com> <8d8511040912081715r751ff502p1f9aa5d50760b697@mail.gmail.com> <549a9ada0912082050y65193479lcff2b44a66cf59f3@mail.gmail.com> <4B1FF261.2080505@gmail.com> <549a9ada0912092052j78e05d67l4435d9fa5cef6ec6@mail.gmail.com> <549a9ada0912092053x39ff5de1i72463305fb2f6c23@mail.gmail.com> <003701ca79a1$8f0622c0$ad126840$@net> <549a9ada0912100626y30ce6694x8fa25e30ae659b5f@mail.gmail.com> Message-ID: <549a9ada0912100636o31525c85o1fbcad1c17c761b6@mail.gmail.com> hai martin, The pypoom is really cool and let me go through that.Even though it might not what i want, it may lead to some other useful things:). On Thu, Dec 10, 2009 at 7:33 PM, Martin Echols wrote: > Hi Mani, > > > > I am not sure if this would help, but the ?ctypes? or the ?comtypes? > library for pythonce on windows ce PDAs might help you out. It allows you to > access dll libraries. If you are trying to access email on the wince device > check out: http://pythonce.sourceforge.net/Wikka/PIMs which shows you how > to use a module called pypoom to access mail resources. > > Regards, Martin > > > > *From:* pythonce-bounces+martinechols=verizon.net at python.org [mailto: > pythonce-bounces+martinechols = > verizon.net at python.org] *On Behalf Of *mani kandan > *Sent:* Wednesday, December 09, 2009 11:53 PM > *To:* PythonCE at python.org > *Subject:* [PythonCE] Import inbox error > > > > > > > > On Thu, Dec 10, 2009 at 12:24 AM, Sini M?kel? > wrote: > > Hi, > > > > > > > > >>"inbox" is also a Python extension for S60, so you cannot use it with > PythonCE just like that. > > >>Sorry, this is probably not the answer you were looking for, but the sad > truth. > > yeah Sini this is a sad truth for me.But can you please suggest me any > other extension of pythonCE that can be used to access the sms inbox. > > > > On Wed, Dec 9, 2009 at 6:45 AM, Mark Doukidis mdoukidis at gmail.com>> wrote: > > 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 > mark > > On Tue, Dec 8, 2009 at 10:40 PM, mani kandan > > wrote: > > I am new to this forum and pythonCE please help me with this issue.I > > downloaded and installed pythonCE on my device and when i tried > to run the > > program > > > > > > import inbox, appuifw > > > > box = inbox.Inbox() > > query = appuifw.query(u"Search for:", "text").lower() > > > > hits = [] > > ids = [] > > for sms_id in box.sms_messages(): > > msg = box.content(sms_id).lower() > > if msg.find(query) != -1: > > hits.append(msg[:25]) > > ids.append(sms_id) > > > > index = appuifw.selection_list(hits, 1) > > if index >= 0: > > appuifw.note(box.content(ids[index])) > > > > > > it shows me Import error:No module named inbox. > > > > I not able to figure out how to include the particular file. > > > > -- > > ALWAYS KEEP SMILING > > > > FOR U EVER, > > > > G.MANIKANDAN > > > > _______________________________________________ > > PythonCE mailing list > > > PythonCE at python.org > > > > http://mail.python.org/mailman/listinfo/pythonce > > > > > > > > > -- > ALWAYS KEEP SMILING > > FOR U EVER, > G.MANIKANDAN > > ------------------------------------------------------------------------ > > > > _______________________________________________ > PythonCE mailing list > PythonCE at python.org > http://mail.python.org/mailman/listinfo/pythonce > > > > > > > -- > > ALWAYS KEEP SMILING > > FOR U EVER, > > G.MANIKANDAN > > > > > -- > ALWAYS KEEP SMILING > > FOR U EVER, > > G.MANIKANDAN > -- ALWAYS KEEP SMILING FOR U EVER, G.MANIKANDAN -- ALWAYS KEEP SMILING FOR U EVER, G.MANIKANDAN -------------- next part -------------- An HTML attachment was scrubbed... URL: From pacopablo at pacopablo.com Sat Dec 12 00:33:36 2009 From: pacopablo at pacopablo.com (John Hampton) Date: Fri, 11 Dec 2009 15:33:36 -0800 Subject: [PythonCE] PyCon 2010 In-Reply-To: <9613db600912071014w1ede9f68tfa511dd87bd4047f@mail.gmail.com> References: <9613db600912071014w1ede9f68tfa511dd87bd4047f@mail.gmail.com> Message-ID: <4B22D6D0.5070607@pacopablo.com> On 12/7/09 10:14 AM, Tim Lesher wrote: > Are any PythonCE users or developers going to be at Pycon this year? > > If so, any interest in sprinting on PythonCE patches? I'm planning on being there. I don't know how many of the sprint days I'll be attending yet. Can't say that I've hacked on the PythonCE patches, but as it's in a pretty critical position at my work, I'd love to dig into some of it. -John From akrpic77 at gmail.com Mon Dec 21 17:31:12 2009 From: akrpic77 at gmail.com (Andrej Krpic) Date: Mon, 21 Dec 2009 17:31:12 +0100 Subject: [PythonCE] Running PyCe 2.5 on a Linux Platform In-Reply-To: <4AFCBCB5.8080208@murkworks.com> References: <4afca537.c701be0a.75f3.ffffb0be@mx.google.com> <4AFCBCB5.8080208@murkworks.com> Message-ID: <336094d30912210831x4580f011w45a2f8c5282c4e9d@mail.gmail.com> On Fri, Nov 13, 2009 at 2:56 AM, Brad Clements wrote: > The only way I can think of doing this is to run a CE emulator (only > available for Windows). > I have been successfully running stand alone Device Emulator in Mac OS X under Darwine (port of wine). I believe it would work even better on linux. (Try *http://tinyurl.com/pse9tv*) Network card emulation did not work. Serial communication did work. And you always have ability to share a folder between emulator and host. -Andrej -------------- next part -------------- An HTML attachment was scrubbed... URL: From akrpic77 at gmail.com Mon Dec 21 18:05:38 2009 From: akrpic77 at gmail.com (Andrej Krpic) Date: Mon, 21 Dec 2009 18:05:38 +0100 Subject: [PythonCE] Is PythonCE still active In-Reply-To: References: Message-ID: <336094d30912210905t36e88ab3sada53b3514a1cd43@mail.gmail.com> On Sat, Nov 14, 2009 at 4:45 AM, Luke Dunstan wrote: > > No, as far as I know the project is not active. Personally I haven't used a > Windows Mobile-based PDA or phone for years (right now I am using Android), > so I am not really interested anymore. If anyone wants to work on new > releases then I can add them to the project as a developer. > I have "working" build of python trunk. It has many rough edges (crashing tests). And few differences with previous versions, mainly: current directory support is out, support for native (and non-native for PocketPC) command line is in (while keeping old pythonce ui interface supported). I'm describing the port in my thesis (not finished yet) and I'm interested in working on new releases and discussing the future of pythonce. -Andrej -------------- next part -------------- An HTML attachment was scrubbed... URL: