Commit d3908be6 by Antony Lee Committed by Wenzel Jakob

Clarify docs for functions taking bytes and not str.

parent 27c7697f
...@@ -27,6 +27,7 @@ MANIFEST ...@@ -27,6 +27,7 @@ MANIFEST
*.py[co] *.py[co]
*.egg-info *.egg-info
*~ *~
.*.swp
.DS_Store .DS_Store
/dist /dist
/build /build
......
...@@ -58,7 +58,9 @@ Passing bytes to C++ ...@@ -58,7 +58,9 @@ Passing bytes to C++
-------------------- --------------------
A Python ``bytes`` object will be passed to C++ functions that accept A Python ``bytes`` object will be passed to C++ functions that accept
``std::string`` or ``char*`` *without* conversion. ``std::string`` or ``char*`` *without* conversion. On Python 3, in order to
make a function *only* accept ``bytes`` (and not ``str``), declare it as taking
a ``py::bytes`` argument.
Returning C++ strings to Python Returning C++ strings to Python
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment