Commit 65093ab7 authored by Martin v. Löwis's avatar Martin v. Löwis

Support Python 2.2.

parent f26779f3
......@@ -7,6 +7,11 @@ import pythoncom, pywintypes
from win32com.client import constants
import re, string, os, sets, glob, popen2, sys, _winreg
try:
basestring
except NameError:
basestring = (str, unicode)
Win64 = 0
# Partially taken from Wine
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment