Пример #1
0
    def __init__(self, bmp_file, filepath):
        self.bmp_file = bmp_file
        if sys.platform == 'win32':
            self.filepath = filepath.encode(utils.get_system_encoding())
        else:
            self.filepath = filepath

        self.run()
Пример #2
0
 def __init__(self, grouper, filepath):
     self.grouper = grouper
     if sys.platform == 'win32':
         self.filepath = filepath.encode(utils.get_system_encoding())
     else:
         self.filepath = filepath
     
     self.run()
Пример #3
0
    def __init__(self, grouper, filepath):
        self.grouper = grouper
        if sys.platform == 'win32':
            self.filepath = filepath.encode(utils.get_system_encoding())
        else:
            self.filepath = filepath

        self.run()
Пример #4
0
 def __init__(self, bmp_file, filepath):
     self.bmp_file = bmp_file
     if sys.platform == 'win32':
         self.filepath = filepath.encode(utils.get_system_encoding())
     else:
         self.filepath = filepath
     
     self.run()