mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
version 0.6.37
This commit is contained in:
parent
8bc1415d94
commit
e775ab10bb
@ -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
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user