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. 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