Re: debugger

2009-08-22 Thread Stef Mientki
bug mode. Umm.. which debugger is that? My debugger doesn't have shift-F9... then you probably not working under windows ... Stef -- http://mail.python.org/mailman/listinfo/python-list

Re: Python for professsional Windows GUI apps?

2009-08-26 Thread Stef Mientki
ll doesn't know of it. :) That's great. But do you know of anything I can use as a visual form design tool in wxPython? Not a real form designer, but very convenient is XRC or GUI-support http://mientki.ruhosting.nl/data_www/pylab_works/pw_gui_support.html cheers, Stef -- ht

Re: Python for professsional Windows GUI apps?

2009-08-26 Thread Stef Mientki
ery good idea :-/ I'd be interested in checking out commercial applications written in Python for the Windows OS, if there are any. I've been grown up with (and still using) Delphi, known as having thé best GUI-builder. I now use wxPython (with GUI-support), with more comfort and mo

Re: IDE for python similar to visual basic

2009-08-28 Thread Stef Mientki
very happy and design faster in wxPython (with GUI-support) than in Delphi ;-) cheers, Stef -- http://mail.python.org/mailman/listinfo/python-list

Re: Flowcharting in Python?

2009-09-07 Thread Stef Mientki
e powerful OGL-like, see here some examples what you can do with OGL-like http://mientki.ruhosting.nl/data_www/pylab_works/pw_circuit_editor.html http://mientki.ruhosting.nl/data_www/pylab_works/pw_bricks_2d_scene.html cheers, Stef -- http://mail.python.org/mailman/listinfo/python-list

Re: logging sound / speech handler?

2009-09-09 Thread Stef Mientki
. (with standard filtering etc.) I google search was not successfull. Does anybode know of such a handler? -- Gregor if you're on windows, you can use the windows speech api: import win32com.client s = win32com.client.Dispatch("SAPI.SpVoice") s.Speak('Is this punthoofd 

Re: set breakpoint in another module/file

2009-09-22 Thread Stef Mientki
er'") I think winpdb ( nothing todo with windows-OS ) can do that and much more. cheers, Stef -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Editor or IDE ActiveX control

2010-08-26 Thread Stef Mientki
embeddable > programmer's editor that happens to have syntax definitions for Python. > > I'd suggest you have a look at Scintilla. Quite a good editing control, I > don't think it comes wrapped in ActiveX or anything like that, just interface > it in your favourite la

what is this kind of string: b'string' ?

2010-09-01 Thread Stef Mientki
in winpdb I see strings like this: >>>a = b'string' >>>a 'string' >>> type(a) what's the "b" doing in front of the string ? thanks, Stef Mientki -- http://mail.python.org/mailman/listinfo/python-list

Re: State Machines in Python

2010-09-04 Thread Stef Mientki
essor activity was about 10%. Maybe you should also look at what those radio guys from gnu radio achive. cheers, Stef > As there is no switch statement in Python, I've been looking around for a > good implementation. > Most of the algorithms I've come across seem to be based o

are there pros or contras, keeping a connection to a (sqlite) database ?

2010-09-08 Thread Stef Mientki
connection to the database continuously "open" ? thanks, Stef Mientki -- http://mail.python.org/mailman/listinfo/python-list

is there a library/program that converts sqlite database from windows-1252 to utf-8 ?

2010-09-11 Thread Stef Mientki
thanks, Stef Mientki -- http://mail.python.org/mailman/listinfo/python-list

Re: is there a library/program that converts sqlite database from windows-1252 to utf-8 ?

2010-09-11 Thread Stef Mientki
C3 Reading these databases with text_factory = unicode, results in exceptions, when such a string with 0xC3 is encountered. As I want to switch completely to unicode, to prevent these kind of problems in the future. cheers, Stef -- http://mail.python.org/mailman/listinfo/python-list

is there a way to get the encoding of python file

2010-09-12 Thread Stef Mientki
hello, Is it possible to get the encoding of a python file from the first source line, (if there's any), after importing it ( with '__import__' ) # -*- coding: windows-1252 -*- thanks, Stef -- http://mail.python.org/mailman/listinfo/python-list

Re: is there a library/program that converts sqlite database from windows-1252 to utf-8 ?

2010-09-12 Thread Stef Mientki
On 12-09-2010 00:07, Robert Kern wrote: > On 9/11/10 4:45 PM, Stef Mientki wrote: >> On 11-09-2010 21:11, Robert Kern wrote: >>> SQLite internally stores its strings as UTF-8 or UTF-16 encoded Unicode. So >>> it's not clear what >>> you mean when you sa

Re: is there a way to get the encoding of python file

2010-09-13 Thread Stef Mientki
On 12-09-2010 19:28, Robert Kern wrote: > On 9/12/10 4:14 AM, Stef Mientki wrote: >> hello, >> >> Is it possible to get the encoding of a python file from the first source >> line, >> (if there's any), >> after importing it ( with '__import_

utf-8 coding sometimes it works, most of the time it don't work.

2010-09-21 Thread Stef Mientki
e__ import absolute_import, unicode_literals >From the Pyjamas and PyScripter group I've no answer untill now. any clues where to look for the problem ? thanks, Stef Mientki -- http://mail.python.org/mailman/listinfo/python-list

Re: utf-8 coding sometimes it works, most of the time it don't work.

2010-09-22 Thread Stef Mientki
hello Uli, thanks, I think you hit the nail on it's head, PyScripter indeed changes default encoding but .. On Wed, Sep 22, 2010 at 9:16 AM, Ulrich Eckhardt wrote: > Stef Mientki wrote: > > When running this python application from the command line ( or launched > > from an

Re: JavaScript vs Python

2010-11-09 Thread Stef Mientki
od Parts" of it anyway. > Python, too, has its good parts, you have to admit... And there's a (or even more) Python to JS compilers, I never heard of a JS to Python compiler. cheers, Stef -- http://mail.python.org/mailman/listinfo/python-list

is there an Python equivalent for the PHP super globals like $_POST, $_COOKIE ?

2010-11-11 Thread Stef Mientki
hello, finally got Python running at my server. Now I would like to replace the PHP server scripts with Python ( for easier maintenance). But I can't find how th get to PHP's equivalent of $_Post and $_Cookie ? Google finds lots of links, but I can't find the answer. thank

Re: is there an Python equivalent for the PHP super globals like $_POST, $_COOKIE ?

2010-11-11 Thread Stef Mientki
On 11-11-2010 19:01, Steve Holden wrote: > On 11/11/2010 9:22 AM, Stef Mientki wrote: >> hello, >> >> finally got Python running at my server. >> >> Now I would like to replace the PHP server scripts with Python ( for easier >> maintenance). >> >&

Re: is there an Python equivalent for the PHP super globals like $_POST, $_COOKIE ?

2010-11-11 Thread Stef Mientki
On 11-11-2010 19:36, david wright wrote: > > > *From:* Stef Mientki > *To:* python-list@python.org > *Sent:* Thu, November 11, 2010 10:20:03 AM > *Subject:* Re: is there an Pyt

<    3   4   5   6   7   8