1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

trim usage of six (#382)

This is artisanal manual craftwork :-)

     def mDone(self, button):
         if button == 0:        # "OK" or double click
-            if isinstance(self.tree.selection_key, six.string_types):
-                self.key = str(self.tree.selection_key)
-            else:
-                self.key = self.tree.selection_key
+            self.key = self.tree.selection_key
This commit is contained in:
Alexandre Detiste 2024-09-19 02:33:10 +02:00 committed by GitHub
parent 1149d4fd4f
commit 148f189a74
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 47 additions and 94 deletions

View file

@ -70,8 +70,6 @@ from pysollib.util import ACE, ANY_RANK, ANY_SUIT, \
UNLIMITED_MOVES UNLIMITED_MOVES
from pysollib.wizardutil import WizardWidgets from pysollib.wizardutil import WizardWidgets
import six
# ************************************************************************ # ************************************************************************
# * # *
# ************************************************************************ # ************************************************************************
@ -80,7 +78,7 @@ import six
def get_settings(ss): def get_settings(ss):
s = {} s = {}
for w in WizardWidgets: for w in WizardWidgets:
if isinstance(w, six.string_types): if isinstance(w, str):
continue continue
if w.var_name in ss: if w.var_name in ss:
v = ss[w.var_name] v = ss[w.var_name]

View file

@ -26,6 +26,7 @@ import math
import random import random
import time import time
import traceback import traceback
from io import BytesIO
from pickle import Pickler, Unpickler, UnpicklingError from pickle import Pickler, Unpickler, UnpicklingError
import attr import attr
@ -68,10 +69,6 @@ from pysollib.settings import PACKAGE, TITLE, TOOLKIT, TOP_SIZE
from pysollib.settings import VERSION, VERSION_TUPLE from pysollib.settings import VERSION, VERSION_TUPLE
from pysollib.struct_new import NewStruct from pysollib.struct_new import NewStruct
import six
from six import BytesIO
from six.moves import range
if TOOLKIT == 'tk': if TOOLKIT == 'tk':
from pysollib.ui.tktile.solverdialog import reset_solver_dialog from pysollib.ui.tktile.solverdialog import reset_solver_dialog
else: else:
@ -104,7 +101,7 @@ def _updateStatus_process_key_val(tb, sb, k, v):
# self.top.wm_title("%s - %s" # self.top.wm_title("%s - %s"
# % (TITLE, self.getTitleName())) # % (TITLE, self.getTitleName()))
return return
if isinstance(v, six.string_types): if isinstance(v, str):
if sb: if sb:
sb.updateText(gamenumber=v) sb.updateText(gamenumber=v)
# self.top.wm_title("%s - %s %s" % (TITLE, # self.top.wm_title("%s - %s %s" % (TITLE,
@ -146,7 +143,7 @@ def _updateStatus_process_key_val(tb, sb, k, v):
if tb: if tb:
tb.updateText(player=_("Player\n")) tb.updateText(player=_("Player\n"))
return return
if isinstance(v, six.string_types): if isinstance(v, str):
if tb: if tb:
# if self.app.opt.toolbar_size: # if self.app.opt.toolbar_size:
if tb.getSize(): if tb.getSize():
@ -168,7 +165,7 @@ def _updateStatus_process_key_val(tb, sb, k, v):
if v is None: if v is None:
if sb: if sb:
sb.updateText(time='') sb.updateText(time='')
if isinstance(v, six.string_types): if isinstance(v, str):
if sb: if sb:
sb.updateText(time=v) sb.updateText(time=v)
return return
@ -1341,7 +1338,7 @@ class Game(object):
if self.preview: if self.preview:
return return
tb, sb = self.app.toolbar, self.app.statusbar tb, sb = self.app.toolbar, self.app.statusbar
for k, v in six.iteritems(kw): for k, v in kw.items():
_updateStatus_process_key_val(tb, sb, k, v) _updateStatus_process_key_val(tb, sb, k, v)
def _unmapHandler(self, event): def _unmapHandler(self, event):

View file

@ -40,8 +40,6 @@ from pysollib.stack import \
OpenStack OpenStack
from pysollib.util import ANY_SUIT, NO_RANK from pysollib.util import ANY_SUIT, NO_RANK
from six.moves import range
def factorial(x): def factorial(x):
if x <= 1: if x <= 1:

View file

@ -37,8 +37,6 @@ from pysollib.stack import \
InitialDealTalonStack InitialDealTalonStack
from pysollib.util import ANY_SUIT from pysollib.util import ANY_SUIT
from six.moves import range
class Shisen_Hint(AbstractHint): class Shisen_Hint(AbstractHint):
TOP_MATCHING = False TOP_MATCHING = False

View file

@ -34,8 +34,6 @@ from pysollib.stack import \
OpenStack OpenStack
from pysollib.util import ANY_SUIT from pysollib.util import ANY_SUIT
from six.moves import range
# ************************************************************************ # ************************************************************************
# * Samegame # * Samegame

View file

@ -33,8 +33,6 @@ from pysollib.pysolrandom import construct_random
from pysollib.settings import DEBUG, FCS_COMMAND from pysollib.settings import DEBUG, FCS_COMMAND
from pysollib.util import KING from pysollib.util import KING
import six
FCS_VERSION = None FCS_VERSION = None
# ************************************************************************ # ************************************************************************
@ -819,7 +817,7 @@ class Base_Solver_Hint:
if os.name != 'nt': if os.name != 'nt':
kw['close_fds'] = True kw['close_fds'] = True
p = subprocess.Popen(command, **kw) p = subprocess.Popen(command, **kw)
bytes_board = six.binary_type(board, 'utf-8') bytes_board = bytes(board, 'utf-8')
pout, perr = p.communicate(bytes_board) pout, perr = p.communicate(bytes_board)
if p.returncode in (127, 1): if p.returncode in (127, 1):
# Linux and Windows return codes for "command not found" error # Linux and Windows return codes for "command not found" error
@ -1018,7 +1016,7 @@ class FreeCellSolver_Hint(Base_Solver_Hint):
FCS_VERSION = (5, 0, 0) FCS_VERSION = (5, 0, 0)
else: else:
pout, _ = self.run_solver(FCS_COMMAND + ' --version', '') pout, _ = self.run_solver(FCS_COMMAND + ' --version', '')
s = six.text_type(pout.read(), encoding='utf-8') s = str(pout.read(), encoding='utf-8')
m = re.search(r'version ([0-9]+)\.([0-9]+)\.([0-9]+)', s) m = re.search(r'version ([0-9]+)\.([0-9]+)\.([0-9]+)', s)
if m: if m:
FCS_VERSION = (int(m.group(1)), int(m.group(2)), FCS_VERSION = (int(m.group(1)), int(m.group(2)),
@ -1082,7 +1080,7 @@ class FreeCellSolver_Hint(Base_Solver_Hint):
states = 0 states = 0
for sbytes in pout: for sbytes in pout:
s = six.text_type(sbytes, encoding='utf-8') s = str(sbytes, encoding='utf-8')
if DEBUG >= 5: if DEBUG >= 5:
print(s) print(s)
@ -1127,7 +1125,7 @@ class FreeCellSolver_Hint(Base_Solver_Hint):
self.solver_state = 'unsolved' self.solver_state = 'unsolved'
else: else:
for sbytes in pout: for sbytes in pout:
s = six.text_type(sbytes, encoding='utf-8') s = str(sbytes, encoding='utf-8')
if DEBUG: if DEBUG:
print(s) print(s)
if self._determineIfSolverState(s): if self._determineIfSolverState(s):
@ -1356,7 +1354,7 @@ class BlackHoleSolver_Hint(Base_Solver_Hint):
pout, perr = self.run_solver(command, board) pout, perr = self.run_solver(command, board)
for sbytes in pout: for sbytes in pout:
s = six.text_type(sbytes, encoding='utf-8') s = str(sbytes, encoding='utf-8')
if DEBUG >= 5: if DEBUG >= 5:
print(s) print(s)
@ -1390,7 +1388,7 @@ class BlackHoleSolver_Hint(Base_Solver_Hint):
else: else:
self.solver_state = result.lower() self.solver_state = result.lower()
for sbytes in pout: for sbytes in pout:
s = six.text_type(sbytes, encoding='utf-8') s = str(sbytes, encoding='utf-8')
if DEBUG: if DEBUG:
print(s) print(s)

View file

@ -21,6 +21,8 @@
# #
# ---------------------------------------------------------------------------# # ---------------------------------------------------------------------------#
from collections import UserList
from kivy.clock import Clock from kivy.clock import Clock
from pysollib.gamedb import GI from pysollib.gamedb import GI
@ -33,8 +35,6 @@ from pysollib.kivy.selecttree import SelectDialogTreeData
from pysollib.kivy.selecttree import SelectDialogTreeLeaf, SelectDialogTreeNode from pysollib.kivy.selecttree import SelectDialogTreeLeaf, SelectDialogTreeNode
from pysollib.mygettext import _ from pysollib.mygettext import _
from six.moves import UserList
# ************************************************************************ # ************************************************************************
# * Nodes # * Nodes

View file

@ -31,9 +31,6 @@ from pickle import Pickler, Unpickler
from pysollib.settings import PACKAGE, TOOLKIT from pysollib.settings import PACKAGE, TOOLKIT
import six
from six import print_
Image = ImageTk = ImageOps = ImageDraw = None Image = ImageTk = ImageOps = ImageDraw = None
if TOOLKIT == 'tk': if TOOLKIT == 'tk':
try: # PIL try: # PIL
@ -125,9 +122,9 @@ def print_err(s, level=1):
elif level == 2: elif level == 2:
ss = PACKAGE+': DEBUG WARNING:' ss = PACKAGE+': DEBUG WARNING:'
try: try:
print_(ss, s, file=sys.stderr) print(ss, s, file=sys.stderr)
except Exception: except Exception:
print_(ss, s.encode(locale.getpreferredencoding()), file=sys.stderr) print(ss, s.encode(locale.getpreferredencoding()), file=sys.stderr)
sys.stderr.flush() sys.stderr.flush()
@ -184,7 +181,7 @@ if os.name == "posix":
def win32_getusername(): def win32_getusername():
user = os.environ.get('USERNAME', '').strip() user = os.environ.get('USERNAME', '').strip()
try: try:
user = six.text_type(user, locale.getpreferredencoding()) user = str(user, locale.getpreferredencoding())
except Exception: except Exception:
user = '' user = ''
return user return user

View file

@ -1,10 +1,8 @@
import gettext import gettext
import sys import sys
import six
class myLocalGettext:
class myLocalGettext(object):
def __init__(self, lang): def __init__(self, lang):
self.language = lang self.language = lang
@ -19,8 +17,8 @@ class myLocalGettext(object):
return t return t
def maketext(self, msg): def maketext(self, msg):
if not isinstance(msg, six.text_type): if not isinstance(msg, str):
return six.text_type(msg, 'utf-8') return str(msg, 'utf-8')
return msg return msg
def ungettext(self, msgid1, msgid2, n): def ungettext(self, msgid1, msgid2, n):

View file

@ -35,9 +35,6 @@ from pysollib.mygettext import myGettext
from pysollib.pysoltk import STATUSBAR_ITEMS, TOOLBAR_BUTTONS, TOOLKIT from pysollib.pysoltk import STATUSBAR_ITEMS, TOOLBAR_BUTTONS, TOOLKIT
from pysollib.resource import CSI from pysollib.resource import CSI
import six
import validate import validate
# ************************************************************************ # ************************************************************************
@ -663,7 +660,7 @@ class Options:
val = getattr(self, key) val = getattr(self, key)
if isinstance(val, str): if isinstance(val, str):
if sys.version_info < (3,): if sys.version_info < (3,):
val = six.text_type(val, 'utf-8') val = str(val, 'utf-8')
config['general'][key] = val config['general'][key] = val
config['general']['recent_gameid'] = self.recent_gameid config['general']['recent_gameid'] = self.recent_gameid

View file

@ -25,8 +25,6 @@ import gtk
from pysollib.mygettext import _ from pysollib.mygettext import _
import six
class BasicStatusbar: class BasicStatusbar:
def __init__(self, top, row, column, columnspan): def __init__(self, top, row, column, columnspan):
@ -60,7 +58,7 @@ class BasicStatusbar:
for k, v in kw.items(): for k, v in kw.items():
label = getattr(self, k + "_label") label = getattr(self, k + "_label")
label.pop(0) label.pop(0)
label.push(0, six.text_type(v)) label.push(0, str(v))
def config(self, name, show): def config(self, name, show):
# FIXME # FIXME
@ -70,7 +68,7 @@ class BasicStatusbar:
label = getattr(self, name + "_label") label = getattr(self, name + "_label")
# FIXME kw['fg'] # FIXME kw['fg']
label.pop(0) label.pop(0)
label.push(0, six.text_type(kw['text'])) label.push(0, str(kw['text']))
def show(self, show=True, resize=False): def show(self, show=True, resize=False):
if show: if show:

View file

@ -38,8 +38,6 @@ from pysollib.mfxutil import Struct, openURL
from pysollib.mygettext import _ from pysollib.mygettext import _
from pysollib.settings import TITLE from pysollib.settings import TITLE
import six
from tkwidget import MfxMessageDialog from tkwidget import MfxMessageDialog
if __name__ == '__main__': if __name__ == '__main__':
@ -71,7 +69,7 @@ class tkHTMLWriter(pysollib.formatter.NullWriter):
self.indent = '' self.indent = ''
def write(self, data): def write(self, data):
data = six.text_type(data) data = str(data)
self.text.insert(self.text.get_end_iter(), data, len(data)) self.text.insert(self.text.get_end_iter(), data, len(data))
def anchor_bgn(self, href, name, type): def anchor_bgn(self, href, name, type):

View file

@ -29,8 +29,6 @@ from pysollib.mfxutil import Image, KwStruct, Struct, USE_PIL
from pysollib.mygettext import _ from pysollib.mygettext import _
from pysollib.settings import DEBUG from pysollib.settings import DEBUG
import six
# ************************************************************************ # ************************************************************************
# * Abstract # * Abstract
# ************************************************************************ # ************************************************************************
@ -477,7 +475,7 @@ class Cardset(Resource):
def updateCardback(self, backname=None, backindex=None): def updateCardback(self, backname=None, backindex=None):
# update default back # update default back
if isinstance(backname, six.string_types): if isinstance(backname, str):
if backname in self.backnames: if backname in self.backnames:
backindex = self.backnames.index(backname) backindex = self.backnames.index(backname)
if isinstance(backindex, int): if isinstance(backindex, int):

View file

@ -27,8 +27,6 @@ from pysollib.gamedb import GI
from pysollib.mfxutil import format_time from pysollib.mfxutil import format_time
from pysollib.mygettext import _ from pysollib.mygettext import _
from six.moves import range
# ************************************************************************ # ************************************************************************
# * # *
# ************************************************************************ # ************************************************************************

View file

@ -22,6 +22,7 @@
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
import os import os
from collections import UserList
from pysollib.gamedb import GI from pysollib.gamedb import GI
from pysollib.mfxutil import KwStruct, Struct, destruct from pysollib.mfxutil import KwStruct, Struct, destruct
@ -31,7 +32,6 @@ from pysollib.resource import CSI
from pysollib.ui.tktile.selecttree import SelectDialogTreeData from pysollib.ui.tktile.selecttree import SelectDialogTreeData
from pysollib.ui.tktile.tkutil import bind, unbind_destroy from pysollib.ui.tktile.tkutil import bind, unbind_destroy
from six.moves import UserList
from six.moves import tkinter from six.moves import tkinter
from six.moves import tkinter_ttk as ttk from six.moves import tkinter_ttk as ttk

View file

@ -29,7 +29,6 @@ from pysollib.resource import TTI
from pysollib.ui.tktile.selecttree import SelectDialogTreeData from pysollib.ui.tktile.selecttree import SelectDialogTreeData
from pysollib.ui.tktile.tkutil import bind from pysollib.ui.tktile.tkutil import bind
import six
from six.moves import tkinter from six.moves import tkinter
from six.moves import tkinter_colorchooser from six.moves import tkinter_colorchooser
from six.moves import tkinter_ttk as ttk from six.moves import tkinter_ttk as ttk
@ -276,7 +275,7 @@ class SelectTileDialogWithPreview(MfxDialog):
def mDone(self, button): def mDone(self, button):
if button == 0: # "OK" or double click if button == 0: # "OK" or double click
if isinstance(self.tree.selection_key, six.string_types): if isinstance(self.tree.selection_key, str):
self.key = str(self.tree.selection_key) self.key = str(self.tree.selection_key)
else: else:
self.key = self.tree.selection_key self.key = self.tree.selection_key
@ -378,7 +377,7 @@ class SelectTileDialogWithPreview(MfxDialog):
canvas.deleteAllItems() canvas.deleteAllItems()
self.preview_scaling = scaling self.preview_scaling = scaling
if isinstance(key, six.string_types): if isinstance(key, str):
if USE_PIL: if USE_PIL:
self.textScale['state'] = 'disabled' self.textScale['state'] = 'disabled'
# solid color # solid color

View file

@ -27,7 +27,6 @@ import sys
from pysollib.mygettext import _ from pysollib.mygettext import _
import six
from six.moves import tkinter from six.moves import tkinter
from six.moves import tkinter_ttk as ttk from six.moves import tkinter_ttk as ttk
@ -97,7 +96,7 @@ class MfxStatusbar:
def updateText(self, **kw): def updateText(self, **kw):
for k, v in kw.items(): for k, v in kw.items():
label = getattr(self, k + '_label') label = getattr(self, k + '_label')
text = six.text_type(v) text = str(v)
width = label['width'] width = label['width']
if width and len(text) > width: if width and len(text) > width:
label['width'] = len(text) label['width'] = len(text)

View file

@ -34,8 +34,6 @@ from pysollib.ui.tktile.tkutil import after, after_cancel
from pysollib.ui.tktile.tkutil import bind, unbind_destroy from pysollib.ui.tktile.tkutil import bind, unbind_destroy
from pysollib.ui.tktile.tkutil import makeToplevel, setTransient from pysollib.ui.tktile.tkutil import makeToplevel, setTransient
import six
from six import PY2
from six.moves import tkinter from six.moves import tkinter
from six.moves import tkinter_font from six.moves import tkinter_font
from six.moves import tkinter_ttk as ttk from six.moves import tkinter_ttk as ttk
@ -121,9 +119,9 @@ class MfxDialog: # ex. _ToplevelDialog
key = event.char key = event.char
try: try:
if os.name == 'nt': if os.name == 'nt':
key = six.text_type(key, locale.getpreferredencoding()) key = str(key, locale.getpreferredencoding())
else: else:
key = six.text_type(key, 'utf-8') key = str(key, 'utf-8')
except Exception: except Exception:
pass pass
else: else:
@ -289,8 +287,6 @@ class MfxExceptionDialog(MfxMessageDialog):
(ex.errno, ex.strerror, repr(ex.filename)) (ex.errno, ex.strerror, repr(ex.filename))
else: else:
t = str(ex) t = str(ex)
if PY2:
t = six.text_type(t, errors='replace')
kw.text = text + t kw.text = text + t
MfxMessageDialog.__init__(self, parent, title, **kw.getKw()) MfxMessageDialog.__init__(self, parent, title, **kw.getKw())

View file

@ -26,7 +26,6 @@ from pysollib.mygettext import _
from pysollib.wizardpresets import presets from pysollib.wizardpresets import presets
from pysollib.wizardutil import WizardWidgets from pysollib.wizardutil import WizardWidgets
import six
from six.moves import tkinter from six.moves import tkinter
from six.moves import tkinter_ttk as ttk from six.moves import tkinter_ttk as ttk
@ -49,7 +48,7 @@ class WizardDialog(MfxDialog):
notebook.pack(expand=True, fill='both') notebook.pack(expand=True, fill='both')
for w in WizardWidgets: for w in WizardWidgets:
if isinstance(w, six.string_types): if isinstance(w, str):
frame = ttk.Frame(notebook) frame = ttk.Frame(notebook)
notebook.add(frame, text=w, sticky='nsew', padding=5) notebook.add(frame, text=w, sticky='nsew', padding=5)
frame.columnconfigure(1, weight=1) frame.columnconfigure(1, weight=1)
@ -128,7 +127,7 @@ class WizardDialog(MfxDialog):
n = w.translation_map[n] n = w.translation_map[n]
p = presets[n] p = presets[n]
for w in WizardWidgets: for w in WizardWidgets:
if isinstance(w, six.string_types): if isinstance(w, str):
continue continue
if w.var_name in p: if w.var_name in p:
v = p[w.var_name] v = p[w.var_name]

View file

@ -22,6 +22,7 @@
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
import os import os
from collections import UserList
from pysollib.gamedb import GI from pysollib.gamedb import GI
from pysollib.mfxutil import KwStruct, Struct, destruct from pysollib.mfxutil import KwStruct, Struct, destruct
@ -31,7 +32,6 @@ from pysollib.resource import CSI
from pysollib.ui.tktile.selecttree import SelectDialogTreeData from pysollib.ui.tktile.selecttree import SelectDialogTreeData
from pysollib.ui.tktile.tkutil import unbind_destroy from pysollib.ui.tktile.tkutil import unbind_destroy
from six.moves import UserList
from six.moves import tkinter from six.moves import tkinter
from .selecttree import SelectDialogTreeCanvas from .selecttree import SelectDialogTreeCanvas

View file

@ -26,7 +26,6 @@ from pysollib.mfxutil import KwStruct
from pysollib.mygettext import _ from pysollib.mygettext import _
from pysollib.ui.tktile.selecttree import SelectDialogTreeData from pysollib.ui.tktile.selecttree import SelectDialogTreeData
import six
from six.moves import tkinter, tkinter_colorchooser from six.moves import tkinter, tkinter_colorchooser
from .selecttree import SelectDialogTreeCanvas from .selecttree import SelectDialogTreeCanvas
@ -172,10 +171,7 @@ class SelectTileDialogWithPreview(MfxDialog):
def mDone(self, button): def mDone(self, button):
if button == 0: # "OK" or double click if button == 0: # "OK" or double click
if isinstance(self.tree.selection_key, six.string_types): self.key = self.tree.selection_key
self.key = str(self.tree.selection_key)
else:
self.key = self.tree.selection_key
self.tree.n_expansions = 1 # save xyview in any case self.tree.n_expansions = 1 # save xyview in any case
if button == 1: # "Solid color..." if button == 1: # "Solid color..."
try: try:
@ -201,7 +197,7 @@ class SelectTileDialogWithPreview(MfxDialog):
return return
canvas = self.preview.canvas canvas = self.preview.canvas
canvas.deleteAllItems() canvas.deleteAllItems()
if isinstance(key, six.string_types): if isinstance(key, str):
# solid color # solid color
canvas.config(bg=key) canvas.config(bg=key)
canvas.setTile(None) canvas.setTile(None)

View file

@ -27,7 +27,6 @@ import sys
from pysollib.mygettext import _ from pysollib.mygettext import _
from pysollib.settings import WIN_SYSTEM from pysollib.settings import WIN_SYSTEM
import six
from six.moves import tkinter from six.moves import tkinter
from .tkwidget import MfxTooltip from .tkwidget import MfxTooltip
@ -96,7 +95,7 @@ class MfxStatusbar:
def updateText(self, **kw): def updateText(self, **kw):
for k, v in kw.items(): for k, v in kw.items():
label = getattr(self, k + '_label') label = getattr(self, k + '_label')
text = six.text_type(v) text = str(v)
width = label['width'] width = label['width']
if width and len(text) > width: if width and len(text) > width:
label['width'] = len(text) label['width'] = len(text)

View file

@ -32,7 +32,6 @@ from pysollib.ui.tktile.tkutil import after, after_cancel
from pysollib.ui.tktile.tkutil import bind, unbind_destroy from pysollib.ui.tktile.tkutil import bind, unbind_destroy
from pysollib.ui.tktile.tkutil import makeToplevel, setTransient from pysollib.ui.tktile.tkutil import makeToplevel, setTransient
import six
from six.moves import tkinter from six.moves import tkinter
from six.moves import tkinter_font from six.moves import tkinter_font
@ -130,7 +129,7 @@ class MfxDialog: # ex. _ToplevelDialog
def altKeyEvent(self, event): def altKeyEvent(self, event):
key = event.char key = event.char
key = six.text_type(key, 'utf-8') key = str(key, 'utf-8')
key = key.lower() key = key.lower()
button = self.accel_keys.get(key) button = self.accel_keys.get(key)
if button is not None: if button is not None:
@ -285,7 +284,7 @@ class MfxExceptionDialog(MfxMessageDialog):
(ex.errno, ex.strerror, repr(ex.filename)) (ex.errno, ex.strerror, repr(ex.filename))
else: else:
t = str(ex) t = str(ex)
kw.text = text + six.text_type(t, errors='replace') kw.text = text + str(t, errors='replace')
MfxMessageDialog.__init__(self, parent, title, **kw.getKw()) MfxMessageDialog.__init__(self, parent, title, **kw.getKw())

View file

@ -26,7 +26,6 @@ from pysollib.mygettext import _
from pysollib.wizardpresets import presets from pysollib.wizardpresets import presets
from pysollib.wizardutil import WizardWidgets from pysollib.wizardutil import WizardWidgets
import six
from six.moves import tkinter from six.moves import tkinter
from .tabpage import TabPageSet from .tabpage import TabPageSet
@ -48,7 +47,7 @@ class WizardDialog(MfxDialog):
notebook.pack(expand=True, fill='both') notebook.pack(expand=True, fill='both')
for w in WizardWidgets: for w in WizardWidgets:
if isinstance(w, six.string_types): if isinstance(w, str):
notebook.AddPage(w) notebook.AddPage(w)
frame = tkinter.Frame(notebook.pages[w]['page']) frame = tkinter.Frame(notebook.pages[w]['page'])
frame.pack(expand=True, fill='both', padx=2, pady=4) frame.pack(expand=True, fill='both', padx=2, pady=4)
@ -117,7 +116,7 @@ class WizardDialog(MfxDialog):
n = w.translation_map[v] n = w.translation_map[v]
p = presets[n] p = presets[n]
for w in WizardWidgets: for w in WizardWidgets:
if isinstance(w, six.string_types): if isinstance(w, str):
continue continue
if w.var_name in p: if w.var_name in p:
v = p[w.var_name] v = p[w.var_name]

View file

@ -37,8 +37,6 @@ from pysollib.mfxutil import Image
from pysollib.mygettext import _ from pysollib.mygettext import _
from pysollib.settings import DATA_DIRS, TOOLKIT from pysollib.settings import DATA_DIRS, TOOLKIT
import six
# ************************************************************************ # ************************************************************************
# * constants # * constants
# ************************************************************************ # ************************************************************************
@ -152,8 +150,8 @@ class DataLoader:
def __findFile(self, func, filename, subdirs=None, do_raise=1): def __findFile(self, func, filename, subdirs=None, do_raise=1):
if subdirs is None: if subdirs is None:
subdirs = ("",) subdirs = ("",)
elif isinstance(subdirs, six.string_types): elif isinstance(subdirs, str):
subdirs = (str(subdirs),) subdirs = (subdirs,)
for dir in subdirs: for dir in subdirs:
f = os.path.join(self.dir, dir, filename) f = os.path.join(self.dir, dir, filename)
f = os.path.normpath(f) f = os.path.normpath(f)

View file

@ -66,8 +66,6 @@ from pysollib.stack import AC_FoundationStack, \
from pysollib.util import ACE, ANY_RANK, KING, NO_RANK, UNLIMITED_MOVES from pysollib.util import ACE, ANY_RANK, KING, NO_RANK, UNLIMITED_MOVES
from pysollib.wizardpresets import presets from pysollib.wizardpresets import presets
import six
# ************************************************************************ # ************************************************************************
# * # *
# ************************************************************************ # ************************************************************************
@ -436,7 +434,7 @@ class MyCustomGame(CustomGame):
''') ''')
for w in WizardWidgets: for w in WizardWidgets:
if isinstance(w, six.string_types): if isinstance(w, str):
continue continue
v = w.variable.get() v = w.variable.get()
if w.widget in ('menu', 'preset'): if w.widget in ('menu', 'preset'):
@ -455,7 +453,7 @@ class MyCustomGame(CustomGame):
v = v.replace("\r", "\\r") v = v.replace("\r", "\\r")
v = v.replace("\t", "\\t") v = v.replace("\t", "\\t")
# See: https://github.com/shlomif/PySolFC/issues/177 # See: https://github.com/shlomif/PySolFC/issues/177
# if isinstance(v, six.text_type): # if isinstance(v, str):
# v = v.encode('utf-8') # v = v.encode('utf-8')
if not v: if not v:
v = 'Invalid Game Name' v = 'Invalid Game Name'
@ -481,7 +479,7 @@ def delete_game(game):
def reset_wizard(game): def reset_wizard(game):
for w in WizardWidgets: for w in WizardWidgets:
if isinstance(w, six.string_types): if isinstance(w, str):
continue continue
if game is None: if game is None:
# set to default # set to default

View file

@ -2,6 +2,7 @@
# -*- mode: python; coding: koi8-r; -*- # -*- mode: python; coding: koi8-r; -*-
# #
import builtins
import os import os
import sys import sys
import time import time
@ -16,7 +17,6 @@ from pysollib.mfxutil import latin1_normalize
from pysollib.mygettext import fix_gettext from pysollib.mygettext import fix_gettext
from pysollib.resource import CSI from pysollib.resource import CSI
from six.moves import builtins
os.environ['LANG'] = 'C' os.environ['LANG'] = 'C'
builtins.__dict__['_'] = lambda x: x builtins.__dict__['_'] = lambda x: x
builtins.__dict__['n_'] = lambda x: x builtins.__dict__['n_'] = lambda x: x