]> git.phdru.name Git - bookmarks_db.git/commitdiff
Make most classes new-style classes
authorOleg Broytman <phd@phdru.name>
Wed, 25 Jun 2014 16:49:21 +0000 (20:49 +0400)
committerOleg Broytman <phd@phdru.name>
Wed, 25 Jun 2014 16:52:13 +0000 (20:52 +0400)
Storage/bkmk_stpickle.py
bkmk_objects.py
sort_db.py

index c4ad32b82ee6c7200db243b1029e9f0403b97a00..444cf35c3395d9a851c09284d4e63fe85d90fcc6 100644 (file)
@@ -1,10 +1,11 @@
 """Bookmarks storage manager - pickle; certainly the most simple and elegant :)
 
 This file is a part of Bookmarks database and Internet robot.
+
 """
 
 __author__ = "Oleg Broytman <phd@phdru.name>"
-__copyright__ = "Copyright (C) 2000-2012 PhiloSoft Design"
+__copyright__ = "Copyright (C) 2000-2014 PhiloSoft Design"
 __license__ = "GNU GPL"
 
 __all__ = ['storage_pickle']
@@ -18,7 +19,7 @@ except ImportError:
    import pickle
 
 
-class storage_pickle:
+class storage_pickle(object):
    filename = "bookmarks_db.pickle"
 
    def store(self, root_folder):
index 23fb816ee180100100722ee2b7ac9818cf63390d..a8c75f279b39962034ca8b8f4ca8e954d183051c 100644 (file)
@@ -5,7 +5,7 @@ This file is a part of Bookmarks database and Internet robot.
 """
 
 __author__ = "Oleg Broytman <phd@phdru.name>"
-__copyright__ = "Copyright (C) 2000-2012 PhiloSoft Design"
+__copyright__ = "Copyright (C) 2000-2014 PhiloSoft Design"
 __license__ = "GNU GPL"
 
 __all__ = ['Folder', 'Bookmark', 'Ruler', 'Walker', 'Writer', 'Robot',
@@ -49,7 +49,7 @@ class Folder(list):
          walker.end_folder(self, level)
 
 
-class Bookmark:
+class Bookmark(object):
    isFolder = 0
    isBookmark = 1
 
@@ -93,12 +93,12 @@ class Bookmark:
       self.charset = charset
 
 
-class Ruler:
+class Ruler(object):
    isFolder = 0
    isBookmark = 0
 
 
-class Walker:
+class Walker(object):
    """
       Interface class. Any instance that will be passed to Folder.walk_depth
       may be derived from this class. It is not mandatory - unlike Java
@@ -135,7 +135,7 @@ class Writer(Walker):
       return self.prune == folder.name
 
 
-class Robot:
+class Robot(object):
    def __init__(self, log):
       self.log = log
 
index f3a5ff1ce203bfed6fe159175777aba21c6556d2..f53cdd4d71b57c20558859220721671e06dbd397 100755 (executable)
@@ -9,16 +9,17 @@
       -r - reverse the sort order
 
 This file is a part of Bookmarks database and Internet robot.
+
 """
 
 __author__ = "Oleg Broytman <phd@phdru.name>"
-__copyright__ = "Copyright (C) 2000-2012 PhiloSoft Design"
+__copyright__ = "Copyright (C) 2000-2014 PhiloSoft Design"
 __license__ = "GNU GPL"
 
 import sys
 
 
-class SortBy:
+class SortBy(object):
    def __init__(self, sort_by):
       self.sort_by = sort_by