1
0
Fork 0
arangodb/3rdParty/boost/1.62.0/libs/python
jsteemann a2411488ae remove unused files (with long filenames that produce problems on Windows checkouts) 2017-05-08 10:46:07 +02:00
..
config upgraded to boost version 1.62.0 2017-01-04 18:08:06 +01:00
doc remove unused files (with long filenames that produce problems on Windows checkouts) 2017-05-08 10:46:07 +02:00
example upgraded to boost version 1.62.0 2017-01-04 18:08:06 +01:00
meta upgraded to boost version 1.62.0 2017-01-04 18:08:06 +01:00
pyste remove unused files (with long filenames that produce problems on Windows checkouts) 2017-05-08 10:46:07 +02:00
src upgraded to boost version 1.62.0 2017-01-04 18:08:06 +01:00
test upgraded to boost version 1.62.0 2017-01-04 18:08:06 +01:00
README.md upgraded to boost version 1.62.0 2017-01-04 18:08:06 +01:00
SConscript upgraded to boost version 1.62.0 2017-01-04 18:08:06 +01:00
SConstruct upgraded to boost version 1.62.0 2017-01-04 18:08:06 +01:00
class.cpp upgraded to boost version 1.62.0 2017-01-04 18:08:06 +01:00
release_notes.txt upgraded to boost version 1.62.0 2017-01-04 18:08:06 +01:00
todo.txt upgraded to boost version 1.62.0 2017-01-04 18:08:06 +01:00

README.md

logo

Synopsis

Welcome to Boost.Python, a C++ library which enables seamless interoperability between C++ and the Python programming language. The library includes support for:

  • References and Pointers
  • Globally Registered Type Coercions
  • Automatic Cross-Module Type Conversions
  • Efficient Function Overloading
  • C++ to Python Exception Translation
  • Default Arguments
  • Keyword Arguments
  • Manipulating Python objects in C++
  • Exporting C++ Iterators as Python Iterators
  • Documentation Strings

See the Boost.Python documentation for details.

Building Build Status

While Boost.Python is part of the Boost C++ Libraries super-project, and thus can be compiled as part of Boost, it can also be compiled and installed stand-alone, i.e. against a pre-installed Boost package.

Prerequisites

Configure

Simply run

scons config [options]

to prepare a build. See scons -h for a description of the available options. For example

scons config --boost=/path/to/boost --python=/path/to/python

will configure Boost.Python to be built against the two specific versions of Boost and Python.

Build

Run

scons

to build the library.

Test

Run

scons test

to run the tests.

Build docs

Run

scons doc

to build the documentation.