delta.py
来自「linux subdivision ying gai ke yi le ba」· Python 代码 · 共 68 行
PY
68 行
#
# delta.py : various utilities for interacting with the _delta module
#
######################################################################
#
# Copyright (c) 2000-2004 CollabNet. All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at http://subversion.tigris.org/license-1.html.
# If newer versions of this license are posted there, you may use a
# newer version instead, at your option.
#
######################################################################
#
from libsvn.delta import *
class Editor:
def set_target_revision(self, target_revision):
pass
def open_root(self, base_revision, dir_pool):
return None
def delete_entry(self, path, revision, parent_baton, pool):
pass
def add_directory(self, path, parent_baton,
copyfrom_path, copyfrom_revision, dir_pool):
return None
def open_directory(self, path, parent_baton, base_revision, dir_pool):
return None
def change_dir_prop(self, dir_baton, name, value, pool):
pass
def close_directory(self, dir_baton):
pass
def add_file(self, path, parent_baton,
copyfrom_path, copyfrom_revision, file_pool):
return None
def open_file(self, path, parent_baton, base_revision, file_pool):
return None
def apply_textdelta(self, file_baton, base_checksum):
return None
def change_file_prop(self, file_baton, name, value, pool):
pass
def close_file(self, text_checksum, file_baton):
pass
def close_edit(self):
pass
def abort_edit(self):
pass
def make_editor(editor, pool):
return svn_swig_py_make_editor(editor, pool)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?