diff -w --ignore-tab-expansion --tabsize=4 -Nur --binary -X 'c:\moin\mypatches\ignore.txt' x13.ori/pmswiki/data/plugin/processor/IndentTable.py x13/pmswiki/data/plugin/processor/IndentTable.py
--- ori/IndentTable.py	2004-11-17 14:37:06.000000000 +0100
+++ my/processor/IndentTable.py	2004-11-21 08:35:00.473806400 +0100
@@ -1,3 +1,4 @@
+# -*- coding: iso-8859-1 -*-
 """
 MoinMoin - IndentTable.py processor
 
@@ -154,7 +155,7 @@
 """
 
 from MoinMoin.parser import wiki
-import cStringIO, re, string, random
+import StringIO, re, string, random
 
 LETTERS = string.ascii_lowercase
 LETTERS_LEN = len (LETTERS)
@@ -383,7 +384,7 @@
 def format (src_text, request, formatter):
     # parse the text (in wiki source format) and make HTML,
     # after diverting sys.stdout to a string
-    str_out = cStringIO.StringIO ()     # create str to collect output
+    str_out = StringIO.StringIO ()     # create str to collect output
     request.redirect (str_out)          # divert output to that string
     # parse this line
     wiki.Parser (src_text, request).format (formatter)
