[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
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
>
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
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"
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
>
> 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
> 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