Re: Launcher for 64 bits doesnt work

2016-04-04 Thread Gustaf
are > escribió: > > Hi Gustaf, > > On Mon, Apr 4, 2016 at 9:38 PM, Gustaf Nilsson > wrote: >> Hi! >> >> The only 3.5.1 versio that works for me is the 32 bits version, will it be >> a problem to use the 32 bits version for 64 bits computer? > > From

Launcher for 64 bits doesnt work

2016-04-04 Thread Gustaf Nilsson
Hi! The only 3.5.1 versio that works for me is the 32 bits version, will it be a problem to use the 32 bits version for 64 bits computer? -- https://mail.python.org/mailman/listinfo/python-list

Re: Method needed for skipping lines

2007-11-01 Thread Gustaf
Bruno Desthuilliers wrote: > Here's a straightforward solution: Thank you. I learned several things from that. :-) Gustaf -- http://mail.python.org/mailman/listinfo/python-list

Re: Method needed for skipping lines

2007-11-01 Thread Gustaf
Yu-Xi Lim wrote: > David Mertz's Text Processing in Python might give you some more > efficient (and interesting) ways of approaching the problem. > > http://gnosis.cx/TPiP/ Thank you for the link. Looks like a great resource. Gustaf -- http://mail.python.org/mailman/listinfo/python-list

Method needed for skipping lines

2007-10-31 Thread Gustaf
lity to skip auto-generated code: # Count the lines of source code in the file def count_lines(f): file = open(f, 'r') rows = 0 for line in file: rows = rows + 1 return rows How would you modify this to exclude lines between "Begin VB.Form" and "End" as described above? Gustaf -- http://mail.python.org/mailman/listinfo/python-list

"encoding specified in XML declaration is incorrect"

2004-12-02 Thread Gustaf Liljegren
ParseException: :1:30: encoding specified in XML declaration is incorrect I see nothing wrong with my XML declaration: And the file is indeed in UTF-8 (or I wouldn't be able to open it in IE and FF). I tried removing the BOM, but it didn't help. What more can be wrong? Gustaf -- http://mail.python.org/mailman/listinfo/python-list

xml.sax in Python 2.3.4

2004-12-01 Thread Gustaf Liljegren
working example looks today. My needs are very simple, so don't want to install any packages on top of the standard distribution. 1. http://pyxml.sourceforge.net/topics/howto/node12.html -- Gustaf -- http://mail.python.org/mailman/listinfo/python-list