diff --git a/sphinx/builders/html.py b/sphinx/builders/html.py
index 573bb9b2c..1d1dfa799 100644
--- a/sphinx/builders/html.py
+++ b/sphinx/builders/html.py
@@ -53,6 +53,23 @@ INVENTORY_FILENAME = 'objects.inv'
LAST_BUILD_FILENAME = 'last_build'
+def get_object_hash(obj):
+ """
+ In python3.3, unicode(dict_instance) retun another string per process.
+ get_object_hash(dict_instance) return same hash for same dict_instance.
+ """
+ if isinstance(obj, dict):
+ return get_object_hash(list(obj.items()))
+
+ elif isinstance(obj, (list, tuple)):
+ obj = sorted(get_object_hash(o) for o in obj)
+
+ else: # int or other objects
+ pass
+
+ return md5(unicode(obj).encode('utf8')).hexdigest()
+
+
class StandaloneHTMLBuilder(Builder):
"""
Builds standalone HTML docs.
@@ -156,9 +173,8 @@ class StandaloneHTMLBuilder(Builder):
cfgdict = dict((name, self.config[name])
for (name, desc) in self.config.values.iteritems()
if desc[1] == 'html')
- self.config_hash = md5(unicode(cfgdict).encode('utf-8')).hexdigest()
- self.tags_hash = md5(unicode(sorted(self.tags)).encode('utf-8')) \
- .hexdigest()
+ self.config_hash = get_object_hash(cfgdict)
+ self.tags_hash = get_object_hash(sorted(self.tags))
old_config_hash = old_tags_hash = ''
try:
fp = open(path.join(self.outdir, '.buildinfo'))