diff --git a/doc/tutorial/doc/html/index.html b/doc/tutorial/doc/html/index.html index d63480c1..6e43c390 100644 --- a/doc/tutorial/doc/html/index.html +++ b/doc/tutorial/doc/html/index.html @@ -124,7 +124,7 @@
>>> import hello_ext ->>> print hello.greet() +>>> print hello_ext.greet() hello, world
diff --git a/doc/tutorial/doc/tutorial.qbk b/doc/tutorial/doc/tutorial.qbk
index f1697fae..94ecc55b 100644
--- a/doc/tutorial/doc/tutorial.qbk
+++ b/doc/tutorial/doc/tutorial.qbk
@@ -62,7 +62,7 @@ resulting DLL is now visible to Python. Here's a sample Python session:
[python]
>>> import hello_ext
- >>> print hello.greet()
+ >>> print hello_ext.greet()
hello, world
[c++]
diff --git a/test/Jamfile.v2 b/test/Jamfile.v2
index 876fde12..55241880 100644
--- a/test/Jamfile.v2
+++ b/test/Jamfile.v2
@@ -3,11 +3,15 @@
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
import python ;
+import os ;
+
+lib socket ;
use-project /boost/python : ../build ;
project /boost/python/test
: requirements