Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 193937 | Differences between
and this patch

Collapse All | Expand All

(-)kombilo05/kombilo.py~ (-5 / +5 lines)
Lines 63-78 Link Here
63
from array import *
63
from array import *
64
import webbrowser
64
import webbrowser
65
65
66
from board1 import *
66
from kombilo.board1 import *
67
import v
67
import kombilo.v as v
68
68
69
try:
69
try:
70
    from sgfpars import Node, Cursor, SGFError, SGFescape
70
    from kombilo.sgfpars import Node, Cursor, SGFError, SGFescape
71
except:
71
except:
72
    from sgfparser import Node, Cursor, SGFError, SGFescape
72
    from kombilo.sgfparser import Node, Cursor, SGFError, SGFescape
73
    
73
    
74
try:
74
try:
75
    import matchC
75
    import kombilo.matchC as matchC
76
    CimportSucceeded = 1
76
    CimportSucceeded = 1
77
except:
77
except:
78
    CimportSucceeded = 0
78
    CimportSucceeded = 0
(-)kombilo05/sgfpars.py~ (-1 / +1 lines)
Lines 2-8 Link Here
2
# Don't modify this file, modify the SWIG interface instead.
2
# Don't modify this file, modify the SWIG interface instead.
3
# This file is compatible with both classic and new-style classes.
3
# This file is compatible with both classic and new-style classes.
4
4
5
import _sgfpars
5
import kombilo._sgfpars
6
6
7
def _swig_setattr(self,class_type,name,value):
7
def _swig_setattr(self,class_type,name,value):
8
    if (name == "this"):
8
    if (name == "this"):
(-)kombilo05/v.py~ (-3 / +3 lines)
Lines 45-54 Link Here
45
from whrandom import randint
45
from whrandom import randint
46
46
47
try:
47
try:
48
    from sgfpars import Node, Cursor, SGFError, SGFescape
48
    from kombilo.sgfpars import Node, Cursor, SGFError, SGFescape
49
except:
49
except:
50
    from sgfparser import Node, Cursor, SGFError, SGFescape
50
    from kombilo.sgfparser import Node, Cursor, SGFError, SGFescape
51
from board1 import *
51
from kombilo.board1 import *
52
52
53
# ---------------------------------------------------------------------------------------
53
# ---------------------------------------------------------------------------------------
54
54

Return to bug 193937