Skip to content

Commit e935758

Browse files
committed
generate python stubs with using relative imports
1 parent ac59273 commit e935758

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

MiddleKit/Core/Model.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
import os
22
import sys
33

4-
try:
5-
from pickle import load, dump
6-
except ImportError:
7-
from pickle import load, dump
4+
from pickle import load, dump
85

96
from MiscUtils.Configurable import Configurable
107
from MiscUtils import NoDefault

MiddleKit/Design/PythonGenerator.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,9 @@ def writePySetChecks(self, out):
248248
%(basename)s
249249
'''
250250
251-
252-
from %(superclassModule)s import %(superclassName)s
251+
if not __package__:
252+
__package__='MiddleKit.Tests.WorkDir'
253+
from .%(superclassModule)s import %(superclassName)s
253254
254255
255256
class %(name)s(%(superclassName)s):

MiddleKit/Docs/Videos/Command/main.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Gain access to the Middle package
22
import os
33
import sys
4-
sys.path.insert(1,r'c:\Python38\Lib\site-packages')
4+
#sys.path.insert(1,r'c:\Python38\Lib\site-packages') #only necessary when you have the old webware/middlekit flying around
55
sys.path.insert(1, os.path.abspath(os.pardir))
66

7+
78
from datetime import date
89
#from MiddleKit.Run.MySQLObjectStore import MySQLObjectStore
910
from MiddleKit.Run.SQLiteObjectStore import SQLiteObjectStore
+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
#
1+
#
2+
#__all__=['Movie','Person','Role']

MiddleKit/Tests/MKTypeValueChecking.mkmodel/TestEmpty.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class Blarg(object):
4848
f.setI(2**32)
4949
except OverflowError:
5050
pass
51-
#else:
51+
##else:
5252
# raise Exception('expecting OverflowError for large int argument')
5353

5454
try:

MiddleKit/Tests/TestCommon.py

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ def rmdir(dirname, shouldPrint=1):
4444

4545
# override any of the preceding as needed by creating a LocalConfig.py:
4646
try:
47+
#from .LocalConfig import *
4748
from LocalConfig import *
4849
except ImportError:
4950
pass

0 commit comments

Comments
 (0)