mirror of
https://github.com/boostorg/python.git
synced 2026-01-24 06:02:14 +00:00
clean other attempts for making unicode -> const char* conversion work, since now we have the right way in previous commit.
[SVN r53693]
This commit is contained in:
@@ -62,35 +62,6 @@ struct arg_from_python<PyObject* const&>
|
||||
PyObject* m_source;
|
||||
};
|
||||
|
||||
#if PY_VERSION_HEX >= 0x03000000
|
||||
// specialization for const char *, experimenting
|
||||
template <>
|
||||
struct arg_from_python<const char*>
|
||||
{
|
||||
typedef const char* result_type;
|
||||
|
||||
arg_from_python(PyObject* p) : m_source(p), intermediate(0) {}
|
||||
bool convertible() const
|
||||
{
|
||||
return PyUnicode_Check(m_source);
|
||||
}
|
||||
const char* operator()()
|
||||
{
|
||||
const char* result;
|
||||
intermediate = PyUnicode_AsUTF8String(m_source);
|
||||
result = PyBytes_AsString(intermediate);
|
||||
return result;
|
||||
}
|
||||
~arg_from_python()
|
||||
{
|
||||
Py_DECREF(intermediate);
|
||||
}
|
||||
private:
|
||||
PyObject* m_source;
|
||||
PyObject* intermediate;
|
||||
};
|
||||
#endif
|
||||
|
||||
//
|
||||
// implementations
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user