From f646c80684bbce1671eb719f50596ae7dee4d433 Mon Sep 17 00:00:00 2001 From: Daniel Wallin Date: Mon, 13 Mar 2006 10:22:48 +0000 Subject: [PATCH] Random python binding [SVN r2881] --- python/Jamfile | 16 +++ python/random.cpp | 243 ++++++++++++++++++++++++++++++++++++++++++++++ python/random.py | 9 ++ 3 files changed, 268 insertions(+) create mode 100755 python/Jamfile create mode 100755 python/random.cpp create mode 100755 python/random.py diff --git a/python/Jamfile b/python/Jamfile new file mode 100755 index 0000000..b43ae22 --- /dev/null +++ b/python/Jamfile @@ -0,0 +1,16 @@ +subproject libs/random/python ; + +# Include definitions needed for Python modules +import python ; + +extension _random + : random.cpp +