From a7ea33a8ecc9886dd7a94906ae30c861b4da3540 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 20 Sep 2004 04:07:02 -0400 Subject: passing --enable-python to configure is now required for python support --- amounts.py | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 amounts.py (limited to 'amounts.py') diff --git a/amounts.py b/amounts.py deleted file mode 100644 index 1d556a1c..00000000 --- a/amounts.py +++ /dev/null @@ -1,25 +0,0 @@ -from amounts import * - -x = Amount ("$123.45") -print x -x = x * 2 -print x - -y = Amount ("$1000.45") -print x + y - -y = Amount ("$1000.45") -print x * y - -z = Value ("$1000.45") -#print z + Value(y) - -z += Value(x) -print z - -bal = Balance (x) -bal += Amount ("100.8 DM") - -print "balance:", bal -for amt in bal: - print " amount:", amt -- cgit v1.2.3