mirror of
https://github.com/RYDE-WORK/pybind11.git
synced 2026-01-24 16:12:25 +08:00
Merge pull request #32 from polygon/fix_complex_arrays
Fixed py:array constructor from failing for complex types
This commit is contained in:
commit
3e4263447b
@ -96,7 +96,7 @@ public:
|
||||
|
||||
array(const buffer_info &info) {
|
||||
API& api = lookup_api();
|
||||
if (info.format.size() != 1)
|
||||
if ((info.format.size() < 1) || (info.format.size() > 2))
|
||||
throw std::runtime_error("Unsupported buffer format!");
|
||||
int fmt = (int) info.format[0];
|
||||
if (info.format == "Zd")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user