Changes between Version 5 and Version 6 of PythonPort/Design
- Timestamp:
- Oct 19, 2007, 3:58:50 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PythonPort/Design
v5 v6 105 105 }}} 106 106 107 Python has booleans. Don't use `0` or `1` instead of `False` and `True`. 108 109 '''NO''' 110 {{{ 111 def add_constant(self, name, value, path=0): 112 }}} 113 114 '''YES''' 115 {{{ 116 def add_constant(self, name, value, path=False): 117 }}} 118 107 119 108 120 == Design: Physical structure ==
