-
```d
struct Uncopiable {
@disable this(this);
double x;
}
export auto uncopiablePtr(double d = 33.3) {
return new Uncopiable(d);
}
```
Calling this from python:
```python
…
-
### Description
Using `poetry install` in a context without a keyring backend (in this case a devcontainer), trying to pull packages from a private http-basic secured pypi, causes 401 unauthorized …
-
First, thanks for the nice work :) I'm writing thise issue for potential future reference/memory as this repo is mentionned as "Python bindings" in the [webview repo](https://github.com/WebView/webvie…
-
Consider this example:
```
%module overloaded_oper
%inline %{
namespace N {
struct Foo { int n; };
struct Bar { double d; };
bool operator==(const Foo& foo1, const Foo& foo2) { return foo1.n == foo…
-
I'm suggesting to follow the struct module of python https://docs.python.org/2/library/struct.html#format-characters.
This means a vec3f will have a signature as: "3f" or "fff"
Then what do we do wi…
-
In the example below I'm writing the same value to five holding registers encoded as a Modbus 32-bit float to a Modbus slave but the external master is not seeing the same value in all five registers,…
-
Since the changes to the coro/Worker struct, the GDB macros appear to be broken. Could we fix these? @bmyerz?
Or @nelsonje did you want to rewrite them in Python anyway?
bholt updated
11 years ago
-
It seems like the next step for integrating Gramps with FS is to write functions to go back and forth between Gramps and FS. Gramps has two serialized forms:
1. a Python tuple-based raw form, eg, `per…
-
I am getting the error below for most, but not all chromosomes. I am fitting my own model from scratch, using a subset of samples from the 1K Genomes 30x as a reference panel, with the variants reduce…
-
Hello,
When running the Python Dataloader with the following command
python reader.py --filename tmpc4jdhmmf --output_path 'data/images' --export_color_images
I receive this error.
struct.e…