mirror of
https://github.com/boostorg/python.git
synced 2026-01-22 05:22:45 +00:00
Merged 2009 GSoC work from sandbox-branches/bhy/py3k branch back into trunk.
[SVN r56305]
This commit is contained in:
@@ -26,8 +26,13 @@ void work_with_string(object print)
|
||||
print(data.capitalize());
|
||||
print('[' + data.center(30) + ']');
|
||||
print(data.count("t"));
|
||||
#if PY_VERSION_HEX < 0x03000000
|
||||
print(data.encode("utf-8"));
|
||||
print(data.decode("utf-8"));
|
||||
#else
|
||||
print(data.encode("utf-8").attr("decode")("utf-8"));
|
||||
print(data.encode("utf-8").attr("decode")("utf-8"));
|
||||
#endif
|
||||
|
||||
BOOST_ASSERT(!data.endswith("xx"));
|
||||
BOOST_ASSERT(!data.startswith("test"));
|
||||
|
||||
Reference in New Issue
Block a user