Click here to Skip to main content
15,891,938 members
Articles / Programming Languages / C++

Custom Python Part 1: Extensions

Rate me:
Please Sign up or sign in to vote.
3.82/5 (15 votes)
21 Nov 2002CC (ASA 2.5)8 min read 85.8K   955   35  
How to build C/C++ custom extension libraries for Python.
# mtprng_test.py
#
# Author: Jamie Hale
#   Date: November 21 2002
#
# This file tests the mtprng Python extension module.
#

import mtprng

if __name__ == "__main__":

	mtprng.sgenrand(4327)
	
	for i in range(50):
		print mtprng.genrand()
		

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Creative Commons Attribution-ShareAlike 2.5 License


Written By
Web Developer
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions