Re: What About Next Laptop Computers?

2006-10-21 Thread John Purser
On Sat, 2006-10-21 at 11:51 -0700, Joe wrote: > L International Reveals Plans for High-Tech > Next-Generation Laptop Computer Systems > > L International Computers Inc. "L" renowned manufacturer of > high-performance computers and personal/business technologies, revealed > plans for its next gener

Re: Reading a Microsoft access file.

2006-10-18 Thread John Purser
uce a report. Can this be done, if could you point > me to some doc? > Thanks. > Wayne > Wayne, Check out: http://mdbtools.sourceforge.net/ https://sourceforge.net/projects/mdbtools/ John Purser -- http://mail.python.org/mailman/listinfo/python-list

Re: IDE that uses an external editor?

2006-10-13 Thread John Purser
On Fri, 2006-10-13 at 12:04 -0500, [EMAIL PROTECTED] wrote: > One thing that's kept me from even looking at IDEs is that to the best of my > knowledge none of them will integrate properly with external editors like > Emacs or vi. I know lots of tools support "Emacs-like keybindings", but > believe

Re: IDE

2006-10-13 Thread John Purser
On Fri, 2006-10-13 at 15:48 +, giuseppe wrote: > What is the better IDE software for python programming? > > many thanks > > joe > > Joe, Find the best Python programmer and ask him/her. John Purser -- http://mail.python.org/mailman/listinfo/python-list

Looking for a reports module/project

2006-09-20 Thread John Purser
uch clearer. I hate to cut a bunch of single purpose code. Before I wander down this road too far I thought I'd ask if anyone else has found a good module or project for writing simple text reports with python. Thanks for the recommendations. John Purser -- http://mail.python.org/mailman/listinfo/python-list

Re: assistance with python coding

2006-09-11 Thread John Purser
WITHOUT using sequence assignment which usually requires some form of temporary variable to hold the values in the middle while they switch. Where are you stationed? Feel free to reply via my gmail account. John Purser -- http://mail.python.org/mailman/listinfo/python-list

Re: Ghostscript interface

2006-09-10 Thread John Purser
e search will turn up a number of products. If you're looking for a python .pdf generator you might want to check out: http://www.reportlab.org/ John Purser -- http://mail.python.org/mailman/listinfo/python-list

Re: 4 Simple Questions About Python/IDLE

2006-09-07 Thread John Purser
elloworld11.py" before double clicking it. Again, these problems indicate that you're not ready to even start coding until you've read a good intro text. John Purser On Thu, 2006-09-07 at 09:11 -0700, Omar wrote: > okay... > > I got to work using the SCITE editor with >

Re: iso creation for python backup script

2006-09-06 Thread John Purser
Windows itself (2000+) comes with it's own backup solution that might even support burning to disk. I haven't used MS in a year or so but it might be worth looking at. John Purser On Wed, 2006-09-06 at 22:55 -0500, Ryan Krauss wrote: > Something like burn4free could work if there

Re: Script Bug?

2006-09-06 Thread John Purser
o line three? I need to have > persistence, cause little snags like these discourage me. I know I > need thicker skin to write code. > > any advice is appreciated > Omar, The [code] and [/code] tags are markup to tell you where the code starts and stops. They are not python.

Re: why have to "from compiler import *"

2006-09-04 Thread John Purser
On Mon, 2006-09-04 at 21:40 -0700, [EMAIL PROTECTED] wrote: > Hi, why does > > >>> import compiler > >>> compileFile("foo.py") > > complain name 'compileFile' not defined. But Because 'compileFile' is not defined. But I th

Re: problem with appending to a list, possibly mysqldb related

2006-08-31 Thread John Purser
On Thu, 31 Aug 2006 18:39:45 GMT John Salerno <[EMAIL PROTECTED]> wrote: > John Salerno wrote: > > John Purser wrote: > > > >> I'd say you had a record with a null value for the namefirst field. > >> The join method don't like that. > >

Re: problem with appending to a list, possibly mysqldb related

2006-08-31 Thread John Purser
C:\Python24\myscripts\bbdata_access\bbdata.py", line 64, in > OnInit frame = MyFrame() >File "C:\Python24\myscripts\bbdata_access\bbdata.py", line 15, in > __init__ > name = ' '.join(x) > TypeError: sequence item 0: expected string, NoneType found >

Re: wait for keystoke

2006-08-30 Thread John Purser
to add in an if statement in > the middle of my existing script? Is there a method already to > accomplish this? > David, Take a look at input() and raw_input(). John Purser -- http://mail.python.org/mailman/listinfo/python-list

Re: dictionary with object's method as thier items

2006-08-30 Thread John Purser
: } > > and so i could access every method of instances of C, such as obj with > sometiing like: > (i know that this syntax wont work ) > > obj.(d['function one']) > obj.(d['function two']) > etc.. > Sure. But the syntax would be: d['function one'] = c.func1 d['function one']() I'm not sure what this gets you but it works. John Purser -- http://mail.python.org/mailman/listinfo/python-list