Skip to content

Commit 7e4a88b

Browse files
committed
don't accept bytes/unicode objects in sequence casters
1 parent b431d04 commit 7e4a88b

File tree

4 files changed

+17
-0
lines changed

4 files changed

+17
-0
lines changed

src/common.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -577,6 +577,12 @@ PyObject **seq_get(PyObject *seq, size_t *size_out, PyObject **temp_out) noexcep
577577
goes wrong, it fails gracefully without reporting errors. Other
578578
overloads will then be tried. */
579579

580+
if (PyUnicode_CheckExact(seq) || PyBytes_CheckExact(seq)) {
581+
*size_out = 0;
582+
*temp_out = nullptr;
583+
return nullptr;
584+
}
585+
580586
#if !defined(Py_LIMITED_API) && !defined(PYPY_VERSION)
581587
if (PyTuple_CheckExact(seq)) {
582588
size = (size_t) PyTuple_GET_SIZE(seq);

src/nb_type.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1123,6 +1123,7 @@ void keep_alive(PyObject *nurse, PyObject *patient) {
11231123
} else {
11241124
PyObject *callback =
11251125
PyCFunction_New(&keep_alive_callback_def, patient);
1126+
11261127
PyObject *weakref = PyWeakref_NewRef(nurse, callback);
11271128
if (!weakref) {
11281129
Py_DECREF(callback);

tests/test_stl.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -439,4 +439,10 @@ NB_MODULE(test_stl_ext, m) {
439439
return x;
440440
});
441441

442+
m.def("vector_str", [](const std::vector<std::string>& x){
443+
return x;
444+
});
445+
m.def("vector_str", [](std::string& x){
446+
return x;
447+
});
442448
}

tests/test_stl.py

+4
Original file line numberDiff line numberDiff line change
@@ -820,3 +820,7 @@ def test69_complex_array():
820820
assert t.complex_array_float(np.array([val1_64, -1j, val2_64],dtype=np.complex64)) == [val1_32, (-0-1j), val2_32]
821821
except ImportError:
822822
pass
823+
824+
def test70_vec_char():
825+
assert isinstance(t.vector_str("123"), str)
826+
assert isinstance(t.vector_str(["123", "345"]), list)

0 commit comments

Comments
 (0)