From 3fbc20ddb06783f6146987022bce5c5228de9b2b Mon Sep 17 00:00:00 2001 From: wirawan Date: Mon, 25 Oct 2010 14:42:50 +0000 Subject: [PATCH] * Correction on notes. --- sugar.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sugar.py b/sugar.py index 72ea976..69412fb 100644 --- a/sugar.py +++ b/sugar.py @@ -1,6 +1,6 @@ #!/usr/bin/ipython -pylab # -# $Id: sugar.py,v 1.7 2010-09-27 19:40:40 wirawan Exp $ +# $Id: sugar.py,v 1.8 2010-10-25 14:42:50 wirawan Exp $ # # Created: 20100121 # Wirawan Purwanto @@ -80,7 +80,7 @@ class ranges_type: [1] >>> ranges[1, 4, 7, 9] - [1] + [1, 4, 7, 9] >>> ranges[1:7, 9:11] [1, 2, 3, 4, 5, 6, 9, 10] @@ -90,7 +90,7 @@ class ranges_type: The key is, anything 1-D will be flattened out. So be careful. Slices must have defined starting and ending points. - Undefined step will be reinterpreted as unit step. + Undefined step will be reinterpreted as unit incremental step. As always: endpoints are not included when using the slicing syntax. """ def expand_range(self, rr):