default tabsize to 8
diff --git a/Lib/string.py b/Lib/string.py
index 602fe0a..8ad900b 100644
--- a/Lib/string.py
+++ b/Lib/string.py
@@ -242,7 +242,7 @@
 
 # Expand tabs in a string.
 # Doesn't take non-printing chars into account, but does understand \n.
-def expandtabs(s, tabsize):
+def expandtabs(s, tabsize=8):
 	res = line = ''
 	for c in s:
 		if c == '\t':