Commit 903a65d7 authored by Benjamin Peterson's avatar Benjamin Peterson

fix some imports

parent 92634d6b
......@@ -33,12 +33,12 @@ try:
except ImportError:
gdbm = None
try:
import dbm as anydbm
import dbm.ndbm as anydbm
except ImportError:
anydbm = None
import sys
try:
import cPickle as pickle
import pickle as pickle
except ImportError:
import pickle
......
......@@ -38,12 +38,12 @@ try:
except ImportError:
gdbm = None
try:
import dbm as anydbm
import dbm.ndbm as anydbm
except ImportError:
anydbm = None
import sys
try:
import cPickle as pickle
import pickle as pickle
except ImportError:
import pickle
......
"""Basic regular expression demostration facility (Perl style syntax)."""
from Tkinter import *
from tkinter import *
import re
class ReDemo:
......
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