From a17bad8e0de71fedba4d553052e1c9f6292eb11a Mon Sep 17 00:00:00 2001 From: matham Date: Sat, 2 Aug 2014 18:28:58 -0400 Subject: [PATCH 1/2] Fix clock test to current master. --- kivy/tests/test_clock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kivy/tests/test_clock.py b/kivy/tests/test_clock.py index bf984e004..4a60a4396 100644 --- a/kivy/tests/test_clock.py +++ b/kivy/tests/test_clock.py @@ -19,7 +19,7 @@ class ClockTestCase(unittest.TestCase): from kivy.clock import Clock global counter counter = 0 - Clock._events = {} + Clock._events = [[] for i in range(256)] def test_schedule_once(self): from kivy.clock import Clock From 268fdae3b7b622d82fbad1f2490b95386d7f8977 Mon Sep 17 00:00:00 2001 From: Alexander Taylor Date: Sun, 3 Aug 2014 11:04:53 +0100 Subject: [PATCH 2/2] doc: Updated copyright years --- doc/sources/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/sources/index.rst b/doc/sources/index.rst index b850c1568..e0d50eeb9 100644 --- a/doc/sources/index.rst +++ b/doc/sources/index.rst @@ -48,5 +48,5 @@ For a list of authors, please see the file AUTHORS that accompanies the Kivy source code distribution (next to LICENSE). -Kivy -- Copyright 2010-2013, The Kivy Authors. All rights reserved. +Kivy -- Copyright 2010-2014, The Kivy Authors. All rights reserved.