From 268fa9631ec8bba04ab82aa80891e07cc02cdce2 Mon Sep 17 00:00:00 2001 From: Marc Tamlyn Date: Sun, 19 Aug 2012 20:04:52 +0200 Subject: [PATCH] Fixed indentation in the Python3 docs --- docs/topics/python3.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/topics/python3.txt b/docs/topics/python3.txt index 589856bd4e..b22a331514 100644 --- a/docs/topics/python3.txt +++ b/docs/topics/python3.txt @@ -301,12 +301,12 @@ Division def __truediv__(self, other): return self / other # implement some logic here - __div__ = __truediv__ # Python 2 compatibility + __div__ = __truediv__ # Python 2 compatibility - def __itruediv__(self, other): + def __itruediv__(self, other): return self // other # implement some logic here - __idiv__ = __itruediv__ # Python 2 compatibility + __idiv__ = __itruediv__ # Python 2 compatibility .. module: django.utils.six