summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Greenan <kmgreen2@gmail.com>2015-07-23 00:24:21 -0700
committerKevin Greenan <kmgreen2@gmail.com>2015-07-23 00:24:21 -0700
commit63b7e038f19371592c94067b8c65c5b5e7c2c598 (patch)
tree1864db598ffedfe59669fd34158440c5c1342ec8
parent45d8c9ba820813df0e2b40d5b13385028a8116ff (diff)
downloadpyeclib-63b7e038f19371592c94067b8c65c5b5e7c2c598.tar.gz
Fix README formatting...
-rw-r--r--README34
1 files changed, 17 insertions, 17 deletions
diff --git a/README b/README
index 92719cd..5814c25 100644
--- a/README
+++ b/README
@@ -205,23 +205,23 @@ needs to be taken when handling input to and output from the ``encode()`` and
ECOutOfMemory - if the process has run out of memory
ECDriverError - if an unknown error occurs
- Assume a range request is given for an object with segment size 3K and
- a 1 MB file:
-
- Ranges = (0, 1), (1, 12), (10, 1000), (0, segment_size-1),
- (1, segment_size+1), (segment_size-1, 2*segment_size)
-
- This will return a map keyed on the ranges, where there is a recipe
- given for each range:
-
- {
- (0, 1): {0: (0, 1)},
- (10, 1000): {0: (10, 1000)},
- (1, 12): {0: (1, 12)},
- (0, 3071): {0: (0, 3071)},
- (3071, 6144): {0: (3071, 3071), 1: (0, 3071), 2: (0, 0)},
- (1, 3073): {0: (1, 3071), 1: (0,0)}
- }
+ >Assume a range request is given for an object with segment size 3K and
+ >a 1 MB file:
+ >
+ >>Ranges = (0, 1), (1, 12), (10, 1000), (0, segment_size-1),
+ >> (1, segment_size+1), (segment_size-1, 2*segment_size)
+ >
+ >This will return a map keyed on the ranges, where there is a recipe
+ >given for each range:
+ >
+ >>{
+ >> (0, 1): {0: (0, 1)},
+ >> (10, 1000): {0: (10, 1000)},
+ >> (1, 12): {0: (1, 12)},
+ >> (0, 3071): {0: (0, 3071)},
+ >> (3071, 6144): {0: (3071, 3071), 1: (0, 3071), 2: (0, 0)},
+ >> (1, 3073): {0: (1, 3071), 1: (0,0)}
+ >>}
Quick Start