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

Tutorial updates

[SVN r15840]
This commit is contained in:
Joel de Guzman
2002-10-10 07:13:17 +00:00
parent a06540e471
commit 1d5fb97981
12 changed files with 227 additions and 44 deletions

View File

@@ -26,7 +26,7 @@
</table>
<p>
Python is dynamically typed, unlike C++ which is statically typed. Python
variables may hold an integers, a float, list, dict, tuple, str, long etc.,
variables may hold an integer, a float, list, dict, tuple, str, long etc.,
among other things. In the viewpoint of Boost.Python and C++, these
Pythonic variables are just instances of class <tt>object</tt>. We shall see in
this chapter how to deal with Python objects.</p>