Re: [Cython] [FEATURE REQUEST] VisualBasic

2014-11-06 Thread Zaxebo Yaxebo
o good, that solved this issue. Thanks a lot Zaxebo1 ___ cython-devel mailing list cython-devel@python.org https://mail.python.org/mailman/listinfo/cython-devel

Re: [Cython] [FEATURE REQUEST] VisualBasic

2014-11-05 Thread Zaxebo Yaxebo
Stefan>>> A directive, see Options.py. There are already two directives called "warn.undeclared" and "infer_types.verbose". Combining those should get close to what you are looking for. Zaxebo1>> thanks. it works as i wished. You are really really my saviour. === Now only thing le

Re: [Cython] [FEATURE REQUEST] VisualBasic

2014-11-05 Thread Zaxebo Yaxebo
Sturla>>> Ok, so it is to guard against spelling errors? Yes, thats a real big problem, once . Others are sufferring from this too, as i mentioned in my original post Here are other people also requesting the similar thing: http://stackoverflow.com/questions/613364/is-there-a-need-for-a-use-stri

Re: [Cython] [FEATURE REQUEST] VisualBasic

2014-11-05 Thread Zaxebo Yaxebo
ooops,following line in my earlier email: "We are still using datatype." should be read as: "We are still using duck datatyping." Zaxebo1 ___ cython-devel mailing list cython-devel@python.org https://mail.python.org/mailman/listinfo/cython-dev

Re: [Cython] [FEATURE REQUEST] VisualBasic

2014-11-05 Thread Zaxebo Yaxebo
Thanks for reply @Sturla. 1) Sturla>>> Originally Fortran's "implicit none". Zaxebo>> Yes, you are right :-) --- 2) Sturla>>> I am not sure why you use Python (including Cython) if you prefer to turn off duck typing, though. You kn

[Cython] [FEATURE REQUEST] VisualBasic "Option Explicit" / Perl "use strict" -- bringing variable pre-declaration to cython optionally

2014-11-03 Thread Zaxebo Yaxebo
Subject: [FEATURE REQUEST] VisualBasic "Option Explicit" / Perl "use strict" -- bringing variable pre-declaration to cython optionally === Background: already cython supports the following: #program1 a1 = cython.declare(cython.int) # cdef int