Python: Deprotect some functions

This commit is contained in:
Vicki Pfau 2017-07-08 14:20:41 -07:00
parent 3f59175a81
commit 531d4c7bae
1 changed files with 0 additions and 3 deletions

View File

@ -122,7 +122,6 @@ class Core(object):
return GB(core)
return Core(core)
@protected
def loadFile(self, path):
return bool(lib.mCoreLoadFile(self._core, path.encode('UTF-8')))
@ -138,7 +137,6 @@ class Core(object):
def loadTemporarySave(self, vf):
return bool(self._core.loadTemporarySave(self._core, vf.handle))
@protected
def loadPatch(self, vf):
return bool(self._core.loadPatch(self._core, vf.handle))
@ -160,7 +158,6 @@ class Core(object):
def setVideoBuffer(self, image):
self._core.setVideoBuffer(self._core, image.buffer, image.stride)
@protected
def reset(self):
self._core.reset(self._core)
self._wasReset = True