From 98c678b4848062fb05fd29ac93b6609b8449c063 Mon Sep 17 00:00:00 2001 From: Ilan Steemers Date: Sun, 8 Nov 2015 10:10:04 +0100 Subject: [PATCH 1/2] Updates botocore for testing --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 69c844d..09b6e54 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,7 +7,7 @@ arrow==0.7.0 blessed==1.12.0 boto3==1.2.1 -botocore==1.3.4 # via boto3 +botocore==1.3.5 # via boto3 django-picklefield==0.3.2 django-redis==4.3.0 docutils==0.12 # via botocore From 54758fd0379f3a303fad17fb67528ce8e882c10a Mon Sep 17 00:00:00 2001 From: Ilan Steemers Date: Sun, 8 Nov 2015 10:24:54 +0100 Subject: [PATCH 2/2] Restores Iter example --- docs/iterable.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/iterable.rst b/docs/iterable.rst index b904ba5..a990d8e 100644 --- a/docs/iterable.rst +++ b/docs/iterable.rst @@ -32,6 +32,16 @@ You can also use an :class:`Iter` instance which can sometimes be more convenien i.append(2, -1) i.append(3, -1) + # run it + i.run() + + # get the results + print(i.result()) + +.. code-block:: python + + [-1.0, -2.0, -3.0] + Reference ---------