From 2eb45f4cbcc36b793bd6af1d2f8bea0b1e8681ce Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sun, 17 Feb 2008 12:24:17 +0000 Subject: [PATCH] Escape some slashes which were confusing quickbook. [SVN r43286] --- doc/tutorial/doc/tutorial.qbk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorial/doc/tutorial.qbk b/doc/tutorial/doc/tutorial.qbk index bd02cd04..6abc11f2 100644 --- a/doc/tutorial/doc/tutorial.qbk +++ b/doc/tutorial/doc/tutorial.qbk @@ -1381,9 +1381,9 @@ interpreter. This may be fixed in a future version of boost.python.] [section Using the interpreter] As you probably already know, objects in Python are reference-counted. -Naturally, the [^PyObject]s of the Python/C API are also reference-counted. +Naturally, the [^PyObject]s of the Python\/C API are also reference-counted. There is a difference however. While the reference-counting is fully -automatic in Python, the Python/C API requires you to do it +automatic in Python, the Python\/C API requires you to do it [@http://www.python.org/doc/current/api/refcounts.html by hand]. This is messy and especially hard to get right in the presence of C++ exceptions. Fortunately Boost.Python provides the [@../../../v2/handle.html handle] and