0002512: [Python 2.6 support] Change sets module by built-in set types
svn: r11413
This commit is contained in:
@ -27,11 +27,14 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import sets
|
|
||||||
import shutil
|
import shutil
|
||||||
from xml.parsers.expat import ExpatError, ParserCreate
|
from xml.parsers.expat import ExpatError, ParserCreate
|
||||||
from gettext import gettext as _
|
from gettext import gettext as _
|
||||||
import re
|
import re
|
||||||
|
try:
|
||||||
|
set()
|
||||||
|
except NameError:
|
||||||
|
from sets import Set as set
|
||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
@ -276,7 +279,7 @@ class GrampsParser(UpdateCallback):
|
|||||||
self.childref_map = {}
|
self.childref_map = {}
|
||||||
self.change = change
|
self.change = change
|
||||||
self.dp = DateHandler.parser
|
self.dp = DateHandler.parser
|
||||||
self.place_names = sets.Set()
|
self.place_names = set()
|
||||||
cursor = database.get_place_cursor()
|
cursor = database.get_place_cursor()
|
||||||
data = cursor.next()
|
data = cursor.next()
|
||||||
while data:
|
while data:
|
||||||
|
Reference in New Issue
Block a user