Re: CAD.py

2008-11-01 Thread infixum
[EMAIL PROTECTED] wrote: > r> I am currently looking to create a small CAD program with python. > > Instead of starting from scratch how about extending PythonCAD instead: > > http://www.pythoncad.org/ > > Skip ThanCAD might have a few ideas too. Carl T. -- http://mail.python.org/mailman/lis

Re: Porting VB apps to Python for Window / Linux use

2008-10-19 Thread infixum
On Oct 19, 12:51 am, Stef Mientki <[EMAIL PROTECTED]> wrote: > Lawrence D'Oliveiro wrote: > > In message <[EMAIL PROTECTED]>, Dotan > > Cohen wrote: > > >> I often see mention of SMBs that either want to upgrade their Windows > >> installations, or move to Linux, but cannot because of inhouse VB >

Re: Grandchildren of TestCase don't work

2008-08-19 Thread infixum
Gustavo Narea wrote: > Hello, everyone. > > Why do unitest.TestCase grand-grandchildren not work? > > I've created a unittest.TestCase descendant, which contains the setUp() and > tearDown() for testing some components of a web framework. Every > application based on this framework should subclas

Re: vim newb - indenting python comments

2008-01-04 Thread infixum
On Jan 4, 7:07 pm, Tim Chase <[EMAIL PROTECTED]> wrote: > > One problem I have is that the >> indent in normal mode doesn't work > > when a line starts with the # character.  Any idea what I'm doing > > wrong? > > In short, ">>" *does* indent in normal mode (I presume you > accurately mean "Normal"

vim newb - indenting python comments

2008-01-04 Thread infixum
I'm just starting to use vim. It has helped me do a lot of repetitive editing of Python files. One problem I have is that the >> indent in normal mode doesn't work when a line starts with the # character. Any idea what I'm doing wrong? Thanks in advance for your help. -- http://mail.python.org

Re: Help please with code to find and move files.

2007-12-30 Thread infixum
> > after changing i got this > >     path = r"c:\" >                 ^ > SyntaxError: EOL while scanning single-quoted string Sorry about that. You can't end with a backslash - my bad. I just tried this in the interpreter and 'c:' works. -- http://mail.python.org/mailman/listinfo/python-list

Re: Help please with code to find and move files.

2007-12-30 Thread infixum
> path = r"c:\\" I don't know if this is the whole problem, but this line should read r'c:\' (one backslash). -- http://mail.python.org/mailman/listinfo/python-list