From 60c9b0db802d5fe92a39aae363f7cac8ca54c551 Mon Sep 17 00:00:00 2001 From: "Edwin Marshall (aspidites)" Date: Mon, 23 Jul 2012 21:39:27 -0500 Subject: [PATCH] - transformation no longer raising indentation errors --- kivy/graphics/transformation.pyx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kivy/graphics/transformation.pyx b/kivy/graphics/transformation.pyx index 75cb1b04e..230833b37 100644 --- a/kivy/graphics/transformation.pyx +++ b/kivy/graphics/transformation.pyx @@ -29,7 +29,8 @@ cdef extern from "string.h": cdef double _EPS = 8.8817841970012523e-16 cdef class Matrix: - '''Optimized matrix class for OpenGL:: + ''' + Optimized matrix class for OpenGL:: >>> from kivy.graphics.transformation import Matrix >>> m = Matrix() @@ -42,7 +43,7 @@ cdef class Matrix: [ 0 1 2 3] [ 4 5 6 7] [ 8 9 10 11] - [12 13 14 15] + [ 12 13 14 15] '''