Hello,
I've seen some activity that may hint toward an upcoming Cython 0.29.33
release. This release will include the depfile support. Meson included
native support for compiling Cython code and having support for depfiles
would enable it to correclty rebuild the Cython artifacts when any of
Hello,
this is not a question directly related to cython, but I think the
readers of this list may have the right expertise to answer it.
I am working on a Python extension where I need to instantiate a lot of
Decimal objects. I would like to make it as efficient as possible.
Unfortunately the C-
On 24-09-2018 14:05, Stefan Behnel wrote:
> I added a new directive "str_is_str=True" which can be combined with
> "language_level=3" to get the desired behaviour. It keeps the 'str' builtin
> type as it is (it would otherwise become 'unicode' with level 3) and keeps
> unprefixed string literals as
On 07/11/14 08:30, Ian Henriksen wrote:
> The syntax from Numba is a really good way to do this as well.
> It is just as clear and doesn't conflict with C. Strictly speaking,
> it isn't Python, but it would be nice to have similarities in the
> syntax for the different packages.
What would be the
On 11/11/14 17:55, Daniele Nicolodi wrote:
> On 07/11/14 08:30, Ian Henriksen wrote:
>> The syntax from Numba is a really good way to do this as well.
>> It is just as clear and doesn't conflict with C. Strictly speaking,
>> it isn't Python, but it would be n
On 31/10/14 13:44, Stefan Behnel wrote:
> Daniele Nicolodi schrieb am 31.10.2014 um 13:07:
>> Thanks for applying the patch.
>> I see that you applied it manually and not through git am or similar,
>> otherwise my identity would have been recorded in the git metadata and
>
On 30/10/14 19:32, Stefan Behnel wrote:
> Thanks.
>
> https://github.com/cython/cython/commit/dba0a5f0e80c676367a2a137ac88d33c5ee0119a
Hello Stefan,
Thanks for applying the patch.
I see that you applied it manually and not through git am or similar,
otherwise my identity would have been recorde
---
docs/src/userguide/wrapping_CPlusPlus.rst | 15 +++
1 file changed, 15 insertions(+)
diff --git a/docs/src/userguide/wrapping_CPlusPlus.rst
b/docs/src/userguide/wrapping_CPlusPlus.rst
index 59c89a1..5119b63 100644
--- a/docs/src/userguide/wrapping_CPlusPlus.rst
+++ b/docs/src/use
On 04/12/2013 12:55, Sturla Molden wrote:
>
> On 26 Nov 2013, at 16:18, Daniele Nicolodi wrote:
>
>> Hello,
>>
>> I believe there is a bug in how assignment to typed memoryviews is
>> handled in the compiler. I think the following code should be vali
Hello,
I believe there is a bug in how assignment to typed memoryviews is
handled in the compiler. I think the following code should be valid code:
cdef double[::1] a = np.arange(10, dtype=np.double)
cdef double[::1] b = np.empty(a.size // 2)
b[:] = a[::2]
However, the Cython compiler com
10 matches
Mail list logo