Changed definition of TRUE/FALSE booleans to be correct python objects.
1 parent 1af0f80 commit 6e434b9c20026426cbcd0b2cd8678c341b3d8d76
@tundra tundra authored on 6 Jul 2001
Showing 1 changed file
View
4
tdir
import sys
 
# Version info
 
VERSION = "$Id: tdir,v 1.60 2001/07/05 15:37:56 tundra Exp $"
VERSION = "$Id: tdir,v 1.61 2001/07/06 17:33:40 tundra Exp $"
 
 
# Booleans
 
FALSE = 0
FALSE = 0 == 1
TRUE = not FALSE
 
# Output formatting constants.