2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-27 19:12:16 +00:00

tweak: wrong c++ code written in python

[SVN r31307]
This commit is contained in:
Joel de Guzman
2005-10-13 11:58:53 +00:00
parent 2974286209
commit b705931ff0

View File

@@ -1307,7 +1307,7 @@ __tip__ The astute reader might have noticed that the [^extract<T>]
facility in fact solves the mutable copying problem:
dict d = extract<dict>(x.attr("__dict__"));
d['whatever'] = 3; # modifies x.__dict__ !
d["whatever"] = 3; // modifies x.__dict__ !
[endsect]