Bump to 2.6.2c1.
diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py
index 8f7eb84..e8f55cf 100644
--- a/Lib/distutils/__init__.py
+++ b/Lib/distutils/__init__.py
@@ -22,5 +22,5 @@
#
#--start constants--
-__version__ = "2.6.1"
+__version__ = "2.6.2c1"
#--end constants--
diff --git a/Lib/idlelib/idlever.py b/Lib/idlelib/idlever.py
index 2035267..9cc5850 100644
--- a/Lib/idlelib/idlever.py
+++ b/Lib/idlelib/idlever.py
@@ -1 +1 @@
-IDLE_VERSION = "2.6.1"
+IDLE_VERSION = "2.6.2c1"
diff --git a/Lib/optparse.py b/Lib/optparse.py
index 56b05d6..4a74a68 100644
--- a/Lib/optparse.py
+++ b/Lib/optparse.py
@@ -995,7 +995,7 @@
"""add_option(Option)
add_option(opt_str, ..., kwarg=val, ...)
"""
- if type(args[0]) is types.StringType:
+ if type(args[0]) in types.StringTypes:
option = self.option_class(*args, **kwargs)
elif len(args) == 1 and not kwargs:
option = args[0]