Skip to content

Commit faf3cd0

Browse files
author
Ralf W. Grosse-Kunstleve
committed
merging current boost/python and libs/python from trunk into release branch
[SVN r72277]
1 parent a5e564b commit faf3cd0

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

doc/tutorial/doc/html/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
<p>
125125
</p>
126126
<pre class="programlisting"><span class="special">&gt;&gt;&gt;</span> <span class="keyword">import</span> <span class="identifier">hello_ext</span>
127-
<span class="special">&gt;&gt;&gt;</span> <span class="keyword">print</span> <span class="identifier">hello</span><span class="special">.</span><span class="identifier">greet</span><span class="special">()</span>
127+
<span class="special">&gt;&gt;&gt;</span> <span class="keyword">print</span> <span class="identifier">hello_ext</span><span class="special">.</span><span class="identifier">greet</span><span class="special">()</span>
128128
<span class="identifier">hello</span><span class="special">,</span> <span class="identifier">world</span>
129129
</pre>
130130
<p>

doc/tutorial/doc/tutorial.qbk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ resulting DLL is now visible to Python. Here's a sample Python session:
6262
[python]
6363

6464
>>> import hello_ext
65-
>>> print hello.greet()
65+
>>> print hello_ext.greet()
6666
hello, world
6767

6868
[c++]

test/Jamfile.v2

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@
33
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
44

55
import python ;
6+
import os ;
7+
8+
lib socket ;
69

710
use-project /boost/python : ../build ;
811
project /boost/python/test
912
: requirements
1013
<toolset>gcc:<cxxflags>-Wextra
14+
<target-os>qnxnto:<library>socket
1115
;
1216

1317
local PY = ;

0 commit comments

Comments
 (0)