issues Search Results · repo:rochacbruno/rust-python-example language:Python
Filter by
12 results
(93 ms)12 results
inrochacbruno/rust-python-example (press backspace or delete to remove)Hey! it would be interesting to see additional python test cases - this time with numba.jit precompiler.
LumaRay
- 1
- Opened on Jan 25, 2023
- #26
when i run pytest, it shows error at importing myrustlib package.
ImportError while importing test module /home/badmatrix/rust-integration-with-python/count-doubles-benchmark/count_doubles.py .
Hint: ...
purveshpatel511
- 1
- Opened on Apr 5, 2021
- #24
import os
import sys
from ctypes import *
lib = cdll.LoadLibrary(r myrustlib.dll )
val= tesTTanotheRRtesTTtest
lib.count_doubles(val)
errors out:
func = self._FuncPtr((name_or_ordinal, self)) ...
pydemo
- 4
- Opened on Mar 10, 2020
- #22
When I use
make compile-rust
I get multiple warnings
warning: use of deprecated item r#try : use the `?` operator instead
firvida
- Opened on Feb 20, 2020
- #21
Is there lost one line as use std::mem; in README.md? When I run sample step by step follow README.md,I got same
error,but when I add use std::mem; ,cargo build successfully,but when I delete use std::mem;,and ...
elderbig
- Opened on Jan 24, 2019
- #18
I m on macOS and ran into this issue:
rustup update
git clone https://github.com/rochacbruno/rust-python-example
cd rust-python-example
make compile-rust
then I was greeted by this:
img width= 1680 ...
help wanted
phdoerfler
- 7
- Opened on Oct 1, 2018
- #15
Hi @rochacbruno !
I found your article and the repository yesterday and I find it really useful :)
I am curious to see how an extension written with the native Python C-API compete with a SWIG extension ...
ducdetronquito
- 1
- Opened on Nov 26, 2017
- #13
def count_doubles(bytes data):
cdef Py_ssize_t count = 0, i
cdef char *s = data # no copy
for i in range(len(data) - 1):
count += (s[i] == s[i + 1])
return count
zed
- Opened on Nov 23, 2017
- #11
I would like to see a comparison with https://nim-lang.org/
https://www.youtube.com/watch?time_continue=1017 v=IVgNVJdizHg
rochacbruno
- Opened on Nov 17, 2017
- #5

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Restrict your search to the title by using the in:title qualifier.
Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Press the /
key to activate the search input again and adjust your query.