version 0.6.37

This commit is contained in:
Kovid Goyal 2010-01-31 23:47:30 -07:00
parent 8bc1415d94
commit e775ab10bb
2 changed files with 4 additions and 2 deletions

View File

@ -2,7 +2,7 @@ __license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
__docformat__ = 'restructuredtext en' __docformat__ = 'restructuredtext en'
__appname__ = 'calibre' __appname__ = 'calibre'
__version__ = '0.6.36' __version__ = '0.6.37'
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>" __author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
import re import re

View File

@ -439,7 +439,7 @@ class Page(object):
# closer to the avg number of cols in the set, if equal use larger # closer to the avg number of cols in the set, if equal use larger
# region) # region)
# merge contiguous regions that can contain each other # merge contiguous regions that can contain each other
absorbed = set([]) '''absorbed = set([])
found = True found = True
while found: while found:
found = False found = False
@ -454,6 +454,8 @@ class Page(object):
break break
prev = None if i == 0 else i-1 prev = None if i == 0 else i-1
next = j if self.regions[j] not in regions else None next = j if self.regions[j] not in regions else None
'''
pass