2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-19 04:22:16 +00:00
Raphael Isemann 1452dfe713 Reencoded a few headers that used Windows-1252 with UTF-8.
Nearly every header in the boost codebase is UTF-8, but here there
are a few headers which are using Windows-1252, which makes it impossible
for some tools to parse those files. This patch just reencodes them
with UTF-8 like the rest of the codebase. I checked that the name of the
author is still correct after this change.

No functional change intended.
2017-06-02 17:44:46 -04:00
2017-03-28 12:54:05 -04:00
2016-10-23 21:34:16 -04:00
2015-08-05 07:14:37 -04:00
2017-03-24 15:39:13 -04:00
2016-10-09 00:02:39 -04:00
2017-03-24 15:39:13 -04:00
2006-01-31 03:26:46 +00:00

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.

Hint : Check out the development version of the documentation to see work in progress.

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.

Description
Mirrored via gitea-mirror
Readme 22 MiB
Languages
C++ 87.7%
Python 11.6%
CMake 0.3%
C 0.3%