The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# This file was automatically generated by SWIG (http://www.swig.org).
# Version 2.0.4
#
# Do not make changes to this file unless you know what you are doing--modify
# the SWIG interface file instead.



from sys import version_info
if version_info >= (2,6,0):
    def swig_import_helper():
        from os.path import dirname
        import imp
        fp = None
        try:
            fp, pathname, description = imp.find_module('_client', [dirname(__file__)])
        except ImportError:
            import _client
            return _client
        if fp is not None:
            try:
                _mod = imp.load_module('_client', fp, pathname, description)
            finally:
                fp.close()
            return _mod
    _client = swig_import_helper()
    del swig_import_helper
else:
    import _client
del version_info
def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
    if (name == "thisown"): return self.this.own(value)
    if (name == "this"):
        if type(value).__name__ == 'SwigPyObject':
            self.__dict__[name] = value
            return
    method = class_type.__swig_setmethods__.get(name,None)
    if method: return method(self,value)
    if (not static):
        self.__dict__[name] = value
    else:
        raise AttributeError("You cannot add attributes to %s" % self)

def _swig_setattr(self,class_type,name,value):
    return _swig_setattr_nondynamic(self,class_type,name,value,0)

def _swig_getattr(self,class_type,name):
    if (name == "thisown"): return self.this.own()
    method = class_type.__swig_getmethods__.get(name,None)
    if method: return method(self)
    raise AttributeError(name)

def _swig_repr(self):
    try: strthis = "proxy of " + self.this.__repr__()
    except: strthis = ""
    return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)

def _copy_metadata_deep(value, old_value):
  """Copy all attributes of old_value into value, recursively traversing
  lists and dicts if needed."""
  if value is None or old_value is None or value is old_value: return
  
  if isinstance(value, dict):
    for k, v in value.iteritems():
      _copy_metadata_deep(v, old_value[k])
  elif isinstance(value, list):
    for v, old_v in zip(value, old_value):
      _copy_metadata_deep(v, old_v)
  else:
    try:
      value.__dict__.update(old_value.__dict__)
    except AttributeError:
      pass
      
def _assert_valid_deep(value):
  """Assert value's validity, recursively traversing lists and dicts."""
  if isinstance(value, dict):
    for v in value.itervalues():
      _assert_valid_deep(v)
  elif isinstance(value, list):
    for v in value:
      _assert_valid_deep(v)
  else:
    if hasattr(value, "assert_valid"):
      value.assert_valid()

import core
import delta
import wc
import ra

def svn_client_version():
  """svn_client_version() -> svn_version_t"""
  return _client.svn_client_version()

def svn_client_get_simple_prompt_provider(*args):
  """
    svn_client_get_simple_prompt_provider(svn_auth_simple_prompt_func_t prompt_func, int retry_limit, 
        apr_pool_t pool)
    """
  return _client.svn_client_get_simple_prompt_provider(*args)

def svn_client_get_username_prompt_provider(*args):
  """
    svn_client_get_username_prompt_provider(svn_auth_username_prompt_func_t prompt_func, int retry_limit, 
        apr_pool_t pool)
    """
  return _client.svn_client_get_username_prompt_provider(*args)

def svn_client_get_simple_provider(*args):
  """svn_client_get_simple_provider(apr_pool_t pool)"""
  return _client.svn_client_get_simple_provider(*args)

def svn_client_get_username_provider(*args):
  """svn_client_get_username_provider(apr_pool_t pool)"""
  return _client.svn_client_get_username_provider(*args)

def svn_client_get_ssl_server_trust_file_provider(*args):
  """svn_client_get_ssl_server_trust_file_provider(apr_pool_t pool)"""
  return _client.svn_client_get_ssl_server_trust_file_provider(*args)

def svn_client_get_ssl_client_cert_file_provider(*args):
  """svn_client_get_ssl_client_cert_file_provider(apr_pool_t pool)"""
  return _client.svn_client_get_ssl_client_cert_file_provider(*args)

def svn_client_get_ssl_client_cert_pw_file_provider(*args):
  """svn_client_get_ssl_client_cert_pw_file_provider(apr_pool_t pool)"""
  return _client.svn_client_get_ssl_client_cert_pw_file_provider(*args)

def svn_client_get_ssl_server_trust_prompt_provider(*args):
  """
    svn_client_get_ssl_server_trust_prompt_provider(svn_auth_ssl_server_trust_prompt_func_t prompt_func, 
        apr_pool_t pool)
    """
  return _client.svn_client_get_ssl_server_trust_prompt_provider(*args)

def svn_client_get_ssl_client_cert_prompt_provider(*args):
  """
    svn_client_get_ssl_client_cert_prompt_provider(svn_auth_ssl_client_cert_prompt_func_t prompt_func, 
        int retry_limit, apr_pool_t pool)
    """
  return _client.svn_client_get_ssl_client_cert_prompt_provider(*args)

def svn_client_get_ssl_client_cert_pw_prompt_provider(*args):
  """
    svn_client_get_ssl_client_cert_pw_prompt_provider(svn_auth_ssl_client_cert_pw_prompt_func_t prompt_func, 
        int retry_limit, apr_pool_t pool)
    """
  return _client.svn_client_get_ssl_client_cert_pw_prompt_provider(*args)

def svn_client_proplist_item_dup(*args):
  """svn_client_proplist_item_dup( item, apr_pool_t pool)"""
  return _client.svn_client_proplist_item_dup(*args)
class svn_client_commit_info_t:
    """Proxy of C svn_client_commit_info_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_commit_info_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_commit_info_t, name)
    __repr__ = _swig_repr
    __swig_setmethods__["revision"] = _client.svn_client_commit_info_t_revision_set
    __swig_getmethods__["revision"] = _client.svn_client_commit_info_t_revision_get
    __swig_setmethods__["date"] = _client.svn_client_commit_info_t_date_set
    __swig_getmethods__["date"] = _client.svn_client_commit_info_t_date_get
    __swig_setmethods__["author"] = _client.svn_client_commit_info_t_author_set
    __swig_getmethods__["author"] = _client.svn_client_commit_info_t_author_get
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_commit_info_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __init__(self): 
        """__init__(self) -> svn_client_commit_info_t"""
        this = _client.new_svn_client_commit_info_t()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _client.delete_svn_client_commit_info_t
    __del__ = lambda self : None;
svn_client_commit_info_t_swigregister = _client.svn_client_commit_info_t_swigregister
svn_client_commit_info_t_swigregister(svn_client_commit_info_t)

SVN_CLIENT_COMMIT_ITEM_ADD = _client.SVN_CLIENT_COMMIT_ITEM_ADD
SVN_CLIENT_COMMIT_ITEM_DELETE = _client.SVN_CLIENT_COMMIT_ITEM_DELETE
SVN_CLIENT_COMMIT_ITEM_TEXT_MODS = _client.SVN_CLIENT_COMMIT_ITEM_TEXT_MODS
SVN_CLIENT_COMMIT_ITEM_PROP_MODS = _client.SVN_CLIENT_COMMIT_ITEM_PROP_MODS
SVN_CLIENT_COMMIT_ITEM_IS_COPY = _client.SVN_CLIENT_COMMIT_ITEM_IS_COPY
SVN_CLIENT_COMMIT_ITEM_LOCK_TOKEN = _client.SVN_CLIENT_COMMIT_ITEM_LOCK_TOKEN
class svn_client_commit_item3_t:
    """Proxy of C svn_client_commit_item3_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_commit_item3_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_commit_item3_t, name)
    __repr__ = _swig_repr
    __swig_setmethods__["path"] = _client.svn_client_commit_item3_t_path_set
    __swig_getmethods__["path"] = _client.svn_client_commit_item3_t_path_get
    __swig_setmethods__["kind"] = _client.svn_client_commit_item3_t_kind_set
    __swig_getmethods__["kind"] = _client.svn_client_commit_item3_t_kind_get
    __swig_setmethods__["url"] = _client.svn_client_commit_item3_t_url_set
    __swig_getmethods__["url"] = _client.svn_client_commit_item3_t_url_get
    __swig_setmethods__["revision"] = _client.svn_client_commit_item3_t_revision_set
    __swig_getmethods__["revision"] = _client.svn_client_commit_item3_t_revision_get
    __swig_setmethods__["copyfrom_url"] = _client.svn_client_commit_item3_t_copyfrom_url_set
    __swig_getmethods__["copyfrom_url"] = _client.svn_client_commit_item3_t_copyfrom_url_get
    __swig_setmethods__["copyfrom_rev"] = _client.svn_client_commit_item3_t_copyfrom_rev_set
    __swig_getmethods__["copyfrom_rev"] = _client.svn_client_commit_item3_t_copyfrom_rev_get
    __swig_setmethods__["state_flags"] = _client.svn_client_commit_item3_t_state_flags_set
    __swig_getmethods__["state_flags"] = _client.svn_client_commit_item3_t_state_flags_get
    __swig_setmethods__["incoming_prop_changes"] = _client.svn_client_commit_item3_t_incoming_prop_changes_set
    __swig_getmethods__["incoming_prop_changes"] = _client.svn_client_commit_item3_t_incoming_prop_changes_get
    __swig_setmethods__["outgoing_prop_changes"] = _client.svn_client_commit_item3_t_outgoing_prop_changes_set
    __swig_getmethods__["outgoing_prop_changes"] = _client.svn_client_commit_item3_t_outgoing_prop_changes_get
    __swig_setmethods__["session_relpath"] = _client.svn_client_commit_item3_t_session_relpath_set
    __swig_getmethods__["session_relpath"] = _client.svn_client_commit_item3_t_session_relpath_get
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_commit_item3_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __init__(self): 
        """__init__(self) -> svn_client_commit_item3_t"""
        this = _client.new_svn_client_commit_item3_t()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _client.delete_svn_client_commit_item3_t
    __del__ = lambda self : None;
svn_client_commit_item3_t_swigregister = _client.svn_client_commit_item3_t_swigregister
svn_client_commit_item3_t_swigregister(svn_client_commit_item3_t)

class svn_client_commit_item2_t:
    """Proxy of C svn_client_commit_item2_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_commit_item2_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_commit_item2_t, name)
    __repr__ = _swig_repr
    __swig_setmethods__["path"] = _client.svn_client_commit_item2_t_path_set
    __swig_getmethods__["path"] = _client.svn_client_commit_item2_t_path_get
    __swig_setmethods__["kind"] = _client.svn_client_commit_item2_t_kind_set
    __swig_getmethods__["kind"] = _client.svn_client_commit_item2_t_kind_get
    __swig_setmethods__["url"] = _client.svn_client_commit_item2_t_url_set
    __swig_getmethods__["url"] = _client.svn_client_commit_item2_t_url_get
    __swig_setmethods__["revision"] = _client.svn_client_commit_item2_t_revision_set
    __swig_getmethods__["revision"] = _client.svn_client_commit_item2_t_revision_get
    __swig_setmethods__["copyfrom_url"] = _client.svn_client_commit_item2_t_copyfrom_url_set
    __swig_getmethods__["copyfrom_url"] = _client.svn_client_commit_item2_t_copyfrom_url_get
    __swig_setmethods__["copyfrom_rev"] = _client.svn_client_commit_item2_t_copyfrom_rev_set
    __swig_getmethods__["copyfrom_rev"] = _client.svn_client_commit_item2_t_copyfrom_rev_get
    __swig_setmethods__["state_flags"] = _client.svn_client_commit_item2_t_state_flags_set
    __swig_getmethods__["state_flags"] = _client.svn_client_commit_item2_t_state_flags_get
    __swig_setmethods__["wcprop_changes"] = _client.svn_client_commit_item2_t_wcprop_changes_set
    __swig_getmethods__["wcprop_changes"] = _client.svn_client_commit_item2_t_wcprop_changes_get
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_commit_item2_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __init__(self): 
        """__init__(self) -> svn_client_commit_item2_t"""
        this = _client.new_svn_client_commit_item2_t()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _client.delete_svn_client_commit_item2_t
    __del__ = lambda self : None;
svn_client_commit_item2_t_swigregister = _client.svn_client_commit_item2_t_swigregister
svn_client_commit_item2_t_swigregister(svn_client_commit_item2_t)

class svn_client_commit_item_t:
    """Proxy of C svn_client_commit_item_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_commit_item_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_commit_item_t, name)
    __repr__ = _swig_repr
    __swig_setmethods__["path"] = _client.svn_client_commit_item_t_path_set
    __swig_getmethods__["path"] = _client.svn_client_commit_item_t_path_get
    __swig_setmethods__["kind"] = _client.svn_client_commit_item_t_kind_set
    __swig_getmethods__["kind"] = _client.svn_client_commit_item_t_kind_get
    __swig_setmethods__["url"] = _client.svn_client_commit_item_t_url_set
    __swig_getmethods__["url"] = _client.svn_client_commit_item_t_url_get
    __swig_setmethods__["revision"] = _client.svn_client_commit_item_t_revision_set
    __swig_getmethods__["revision"] = _client.svn_client_commit_item_t_revision_get
    __swig_setmethods__["copyfrom_url"] = _client.svn_client_commit_item_t_copyfrom_url_set
    __swig_getmethods__["copyfrom_url"] = _client.svn_client_commit_item_t_copyfrom_url_get
    __swig_setmethods__["state_flags"] = _client.svn_client_commit_item_t_state_flags_set
    __swig_getmethods__["state_flags"] = _client.svn_client_commit_item_t_state_flags_get
    __swig_setmethods__["wcprop_changes"] = _client.svn_client_commit_item_t_wcprop_changes_set
    __swig_getmethods__["wcprop_changes"] = _client.svn_client_commit_item_t_wcprop_changes_get
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_commit_item_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __init__(self): 
        """__init__(self) -> svn_client_commit_item_t"""
        this = _client.new_svn_client_commit_item_t()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _client.delete_svn_client_commit_item_t
    __del__ = lambda self : None;
svn_client_commit_item_t_swigregister = _client.svn_client_commit_item_t_swigregister
svn_client_commit_item_t_swigregister(svn_client_commit_item_t)


def svn_client_commit_item3_create(*args):
  """svn_client_commit_item3_create(apr_pool_t pool) -> svn_client_commit_item3_t"""
  return _client.svn_client_commit_item3_create(*args)

def svn_client_commit_item_create(*args):
  """svn_client_commit_item_create(apr_pool_t pool) -> svn_error_t"""
  return _client.svn_client_commit_item_create(*args)

def svn_client_commit_item3_dup(*args):
  """svn_client_commit_item3_dup(svn_client_commit_item3_t item, apr_pool_t pool) -> svn_client_commit_item3_t"""
  return _client.svn_client_commit_item3_dup(*args)

def svn_client_commit_item2_dup(*args):
  """svn_client_commit_item2_dup(svn_client_commit_item2_t item, apr_pool_t pool) -> svn_client_commit_item2_t"""
  return _client.svn_client_commit_item2_dup(*args)
svn_client_diff_summarize_kind_normal = _client.svn_client_diff_summarize_kind_normal
svn_client_diff_summarize_kind_added = _client.svn_client_diff_summarize_kind_added
svn_client_diff_summarize_kind_modified = _client.svn_client_diff_summarize_kind_modified
svn_client_diff_summarize_kind_deleted = _client.svn_client_diff_summarize_kind_deleted
class svn_client_diff_summarize_t:
    """Proxy of C svn_client_diff_summarize_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_diff_summarize_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_diff_summarize_t, name)
    __repr__ = _swig_repr
    __swig_setmethods__["path"] = _client.svn_client_diff_summarize_t_path_set
    __swig_getmethods__["path"] = _client.svn_client_diff_summarize_t_path_get
    __swig_setmethods__["summarize_kind"] = _client.svn_client_diff_summarize_t_summarize_kind_set
    __swig_getmethods__["summarize_kind"] = _client.svn_client_diff_summarize_t_summarize_kind_get
    __swig_setmethods__["prop_changed"] = _client.svn_client_diff_summarize_t_prop_changed_set
    __swig_getmethods__["prop_changed"] = _client.svn_client_diff_summarize_t_prop_changed_get
    __swig_setmethods__["node_kind"] = _client.svn_client_diff_summarize_t_node_kind_set
    __swig_getmethods__["node_kind"] = _client.svn_client_diff_summarize_t_node_kind_get
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_diff_summarize_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __init__(self): 
        """__init__(self) -> svn_client_diff_summarize_t"""
        this = _client.new_svn_client_diff_summarize_t()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _client.delete_svn_client_diff_summarize_t
    __del__ = lambda self : None;
svn_client_diff_summarize_t_swigregister = _client.svn_client_diff_summarize_t_swigregister
svn_client_diff_summarize_t_swigregister(svn_client_diff_summarize_t)


def svn_client_diff_summarize_dup(*args):
  """svn_client_diff_summarize_dup(svn_client_diff_summarize_t diff, apr_pool_t pool) -> svn_client_diff_summarize_t"""
  return _client.svn_client_diff_summarize_dup(*args)
class svn_client_ctx_t:
    """Proxy of C svn_client_ctx_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_ctx_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_ctx_t, name)
    __repr__ = _swig_repr
    __swig_setmethods__["auth_baton"] = _client.svn_client_ctx_t_auth_baton_set
    __swig_getmethods__["auth_baton"] = _client.svn_client_ctx_t_auth_baton_get
    __swig_setmethods__["notify_func"] = _client.svn_client_ctx_t_notify_func_set
    __swig_getmethods__["notify_func"] = _client.svn_client_ctx_t_notify_func_get
    __swig_setmethods__["notify_baton"] = _client.svn_client_ctx_t_notify_baton_set
    __swig_getmethods__["notify_baton"] = _client.svn_client_ctx_t_notify_baton_get
    __swig_setmethods__["log_msg_func"] = _client.svn_client_ctx_t_log_msg_func_set
    __swig_getmethods__["log_msg_func"] = _client.svn_client_ctx_t_log_msg_func_get
    __swig_setmethods__["log_msg_baton"] = _client.svn_client_ctx_t_log_msg_baton_set
    __swig_getmethods__["log_msg_baton"] = _client.svn_client_ctx_t_log_msg_baton_get
    __swig_setmethods__["config"] = _client.svn_client_ctx_t_config_set
    __swig_getmethods__["config"] = _client.svn_client_ctx_t_config_get
    __swig_setmethods__["cancel_func"] = _client.svn_client_ctx_t_cancel_func_set
    __swig_getmethods__["cancel_func"] = _client.svn_client_ctx_t_cancel_func_get
    __swig_setmethods__["cancel_baton"] = _client.svn_client_ctx_t_cancel_baton_set
    __swig_getmethods__["cancel_baton"] = _client.svn_client_ctx_t_cancel_baton_get
    __swig_setmethods__["notify_func2"] = _client.svn_client_ctx_t_notify_func2_set
    __swig_getmethods__["notify_func2"] = _client.svn_client_ctx_t_notify_func2_get
    __swig_setmethods__["notify_baton2"] = _client.svn_client_ctx_t_notify_baton2_set
    __swig_getmethods__["notify_baton2"] = _client.svn_client_ctx_t_notify_baton2_get
    __swig_setmethods__["log_msg_func2"] = _client.svn_client_ctx_t_log_msg_func2_set
    __swig_getmethods__["log_msg_func2"] = _client.svn_client_ctx_t_log_msg_func2_get
    __swig_setmethods__["log_msg_baton2"] = _client.svn_client_ctx_t_log_msg_baton2_set
    __swig_getmethods__["log_msg_baton2"] = _client.svn_client_ctx_t_log_msg_baton2_get
    __swig_setmethods__["progress_func"] = _client.svn_client_ctx_t_progress_func_set
    __swig_getmethods__["progress_func"] = _client.svn_client_ctx_t_progress_func_get
    __swig_setmethods__["progress_baton"] = _client.svn_client_ctx_t_progress_baton_set
    __swig_getmethods__["progress_baton"] = _client.svn_client_ctx_t_progress_baton_get
    __swig_setmethods__["log_msg_func3"] = _client.svn_client_ctx_t_log_msg_func3_set
    __swig_getmethods__["log_msg_func3"] = _client.svn_client_ctx_t_log_msg_func3_get
    __swig_setmethods__["log_msg_baton3"] = _client.svn_client_ctx_t_log_msg_baton3_set
    __swig_getmethods__["log_msg_baton3"] = _client.svn_client_ctx_t_log_msg_baton3_get
    __swig_setmethods__["mimetypes_map"] = _client.svn_client_ctx_t_mimetypes_map_set
    __swig_getmethods__["mimetypes_map"] = _client.svn_client_ctx_t_mimetypes_map_get
    __swig_setmethods__["conflict_func"] = _client.svn_client_ctx_t_conflict_func_set
    __swig_getmethods__["conflict_func"] = _client.svn_client_ctx_t_conflict_func_get
    __swig_setmethods__["conflict_baton"] = _client.svn_client_ctx_t_conflict_baton_set
    __swig_getmethods__["conflict_baton"] = _client.svn_client_ctx_t_conflict_baton_get
    __swig_setmethods__["client_name"] = _client.svn_client_ctx_t_client_name_set
    __swig_getmethods__["client_name"] = _client.svn_client_ctx_t_client_name_get
    __swig_setmethods__["conflict_func2"] = _client.svn_client_ctx_t_conflict_func2_set
    __swig_getmethods__["conflict_func2"] = _client.svn_client_ctx_t_conflict_func2_get
    __swig_setmethods__["conflict_baton2"] = _client.svn_client_ctx_t_conflict_baton2_set
    __swig_getmethods__["conflict_baton2"] = _client.svn_client_ctx_t_conflict_baton2_get
    __swig_setmethods__["wc_ctx"] = _client.svn_client_ctx_t_wc_ctx_set
    __swig_getmethods__["wc_ctx"] = _client.svn_client_ctx_t_wc_ctx_get
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_ctx_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __init__(self): 
        """__init__(self) -> svn_client_ctx_t"""
        this = _client.new_svn_client_ctx_t()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _client.delete_svn_client_ctx_t
    __del__ = lambda self : None;
svn_client_ctx_t_swigregister = _client.svn_client_ctx_t_swigregister
svn_client_ctx_t_swigregister(svn_client_ctx_t)


def svn_client_create_context(*args):
  """svn_client_create_context(apr_pool_t pool) -> svn_error_t"""
  return _client.svn_client_create_context(*args)
SVN_CLIENT_AUTH_USERNAME = _client.SVN_CLIENT_AUTH_USERNAME
SVN_CLIENT_AUTH_PASSWORD = _client.SVN_CLIENT_AUTH_PASSWORD

def svn_client_args_to_target_array2(*args):
  """
    svn_client_args_to_target_array2(apr_getopt_t os, apr_array_header_t known_targets, 
        svn_client_ctx_t ctx, svn_boolean_t keep_last_origpath_on_truepath_collision, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_args_to_target_array2(*args)

def svn_client_args_to_target_array(*args):
  """
    svn_client_args_to_target_array(apr_getopt_t os, apr_array_header_t known_targets, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_args_to_target_array(*args)

def svn_client_checkout3(*args):
  """
    svn_client_checkout3(char URL, char path, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, svn_depth_t depth, 
        svn_boolean_t ignore_externals, svn_boolean_t allow_unver_obstructions, 
        svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_checkout3(*args)

def svn_client_checkout2(*args):
  """
    svn_client_checkout2(char URL, char path, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, svn_boolean_t recurse, 
        svn_boolean_t ignore_externals, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_checkout2(*args)

def svn_client_checkout(*args):
  """
    svn_client_checkout(char URL, char path, svn_opt_revision_t revision, svn_boolean_t recurse, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_checkout(*args)

def svn_client_update4(*args):
  """
    svn_client_update4(apr_array_header_t paths, svn_opt_revision_t revision, 
        svn_depth_t depth, svn_boolean_t depth_is_sticky, 
        svn_boolean_t ignore_externals, svn_boolean_t allow_unver_obstructions, 
        svn_boolean_t adds_as_modification, 
        svn_boolean_t make_parents, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_update4(*args)

def svn_client_update3(*args):
  """
    svn_client_update3(apr_array_header_t paths, svn_opt_revision_t revision, 
        svn_depth_t depth, svn_boolean_t depth_is_sticky, 
        svn_boolean_t ignore_externals, svn_boolean_t allow_unver_obstructions, 
        svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_update3(*args)

def svn_client_update2(*args):
  """
    svn_client_update2(apr_array_header_t paths, svn_opt_revision_t revision, 
        svn_boolean_t recurse, svn_boolean_t ignore_externals, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_update2(*args)

def svn_client_update(*args):
  """
    svn_client_update(char path, svn_opt_revision_t revision, svn_boolean_t recurse, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_update(*args)

def svn_client_switch3(*args):
  """
    svn_client_switch3(char path, char url, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, svn_depth_t depth, 
        svn_boolean_t depth_is_sticky, svn_boolean_t ignore_externals, 
        svn_boolean_t allow_unver_obstructions, 
        svn_boolean_t ignore_ancestry, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_switch3(*args)

def svn_client_switch2(*args):
  """
    svn_client_switch2(char path, char url, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, svn_depth_t depth, 
        svn_boolean_t depth_is_sticky, svn_boolean_t ignore_externals, 
        svn_boolean_t allow_unver_obstructions, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_switch2(*args)

def svn_client_switch(*args):
  """
    svn_client_switch(char path, char url, svn_opt_revision_t revision, svn_boolean_t recurse, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_switch(*args)

def svn_client_add4(*args):
  """
    svn_client_add4(char path, svn_depth_t depth, svn_boolean_t force, 
        svn_boolean_t no_ignore, svn_boolean_t add_parents, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_add4(*args)

def svn_client_add3(*args):
  """
    svn_client_add3(char path, svn_boolean_t recursive, svn_boolean_t force, 
        svn_boolean_t no_ignore, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_add3(*args)

def svn_client_add2(*args):
  """
    svn_client_add2(char path, svn_boolean_t recursive, svn_boolean_t force, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_add2(*args)

def svn_client_add(*args):
  """
    svn_client_add(char path, svn_boolean_t recursive, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_add(*args)

def svn_client_mkdir4(*args):
  """
    svn_client_mkdir4(apr_array_header_t paths, svn_boolean_t make_parents, 
        apr_hash_t revprop_table, svn_commit_callback2_t commit_callback, 
        void commit_baton, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_mkdir4(*args)

def svn_client_mkdir3(*args):
  """
    svn_client_mkdir3(apr_array_header_t paths, svn_boolean_t make_parents, 
        apr_hash_t revprop_table, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_mkdir3(*args)

def svn_client_mkdir2(*args):
  """svn_client_mkdir2(apr_array_header_t paths, svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t"""
  return _client.svn_client_mkdir2(*args)

def svn_client_mkdir(*args):
  """svn_client_mkdir(apr_array_header_t paths, svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t"""
  return _client.svn_client_mkdir(*args)

def svn_client_delete4(*args):
  """
    svn_client_delete4(apr_array_header_t paths, svn_boolean_t force, svn_boolean_t keep_local, 
        apr_hash_t revprop_table, 
        svn_commit_callback2_t commit_callback, void commit_baton, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_delete4(*args)

def svn_client_delete3(*args):
  """
    svn_client_delete3(apr_array_header_t paths, svn_boolean_t force, svn_boolean_t keep_local, 
        apr_hash_t revprop_table, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_delete3(*args)

def svn_client_delete2(*args):
  """
    svn_client_delete2(apr_array_header_t paths, svn_boolean_t force, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_delete2(*args)

def svn_client_delete(*args):
  """
    svn_client_delete(apr_array_header_t paths, svn_boolean_t force, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_delete(*args)

def svn_client_import4(*args):
  """
    svn_client_import4(char path, char url, svn_depth_t depth, svn_boolean_t no_ignore, 
        svn_boolean_t ignore_unknown_node_types, 
        apr_hash_t revprop_table, svn_commit_callback2_t commit_callback, 
        void commit_baton, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_import4(*args)

def svn_client_import3(*args):
  """
    svn_client_import3(char path, char url, svn_depth_t depth, svn_boolean_t no_ignore, 
        svn_boolean_t ignore_unknown_node_types, 
        apr_hash_t revprop_table, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_import3(*args)

def svn_client_import2(*args):
  """
    svn_client_import2(char path, char url, svn_boolean_t nonrecursive, svn_boolean_t no_ignore, 
        svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_import2(*args)

def svn_client_import(*args):
  """
    svn_client_import(char path, char url, svn_boolean_t nonrecursive, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_import(*args)

def svn_client_commit5(*args):
  """
    svn_client_commit5(apr_array_header_t targets, svn_depth_t depth, svn_boolean_t keep_locks, 
        svn_boolean_t keep_changelists, 
        svn_boolean_t commit_as_operations, 
        apr_array_header_t changelists, apr_hash_t revprop_table, 
        svn_commit_callback2_t commit_callback, 
        void commit_baton, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_commit5(*args)

def svn_client_commit4(*args):
  """
    svn_client_commit4(apr_array_header_t targets, svn_depth_t depth, svn_boolean_t keep_locks, 
        svn_boolean_t keep_changelists, 
        apr_array_header_t changelists, apr_hash_t revprop_table, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_commit4(*args)

def svn_client_commit3(*args):
  """
    svn_client_commit3(apr_array_header_t targets, svn_boolean_t recurse, 
        svn_boolean_t keep_locks, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_commit3(*args)

def svn_client_commit2(*args):
  """
    svn_client_commit2(apr_array_header_t targets, svn_boolean_t recurse, 
        svn_boolean_t keep_locks, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_commit2(*args)

def svn_client_commit(*args):
  """
    svn_client_commit(apr_array_header_t targets, svn_boolean_t nonrecursive, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_commit(*args)
class svn_client_status_t:
    """Proxy of C svn_client_status_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_status_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_status_t, name)
    __repr__ = _swig_repr
    __swig_setmethods__["kind"] = _client.svn_client_status_t_kind_set
    __swig_getmethods__["kind"] = _client.svn_client_status_t_kind_get
    __swig_setmethods__["local_abspath"] = _client.svn_client_status_t_local_abspath_set
    __swig_getmethods__["local_abspath"] = _client.svn_client_status_t_local_abspath_get
    __swig_setmethods__["filesize"] = _client.svn_client_status_t_filesize_set
    __swig_getmethods__["filesize"] = _client.svn_client_status_t_filesize_get
    __swig_setmethods__["versioned"] = _client.svn_client_status_t_versioned_set
    __swig_getmethods__["versioned"] = _client.svn_client_status_t_versioned_get
    __swig_setmethods__["conflicted"] = _client.svn_client_status_t_conflicted_set
    __swig_getmethods__["conflicted"] = _client.svn_client_status_t_conflicted_get
    __swig_setmethods__["node_status"] = _client.svn_client_status_t_node_status_set
    __swig_getmethods__["node_status"] = _client.svn_client_status_t_node_status_get
    __swig_setmethods__["text_status"] = _client.svn_client_status_t_text_status_set
    __swig_getmethods__["text_status"] = _client.svn_client_status_t_text_status_get
    __swig_setmethods__["prop_status"] = _client.svn_client_status_t_prop_status_set
    __swig_getmethods__["prop_status"] = _client.svn_client_status_t_prop_status_get
    __swig_setmethods__["wc_is_locked"] = _client.svn_client_status_t_wc_is_locked_set
    __swig_getmethods__["wc_is_locked"] = _client.svn_client_status_t_wc_is_locked_get
    __swig_setmethods__["copied"] = _client.svn_client_status_t_copied_set
    __swig_getmethods__["copied"] = _client.svn_client_status_t_copied_get
    __swig_setmethods__["repos_root_url"] = _client.svn_client_status_t_repos_root_url_set
    __swig_getmethods__["repos_root_url"] = _client.svn_client_status_t_repos_root_url_get
    __swig_setmethods__["repos_uuid"] = _client.svn_client_status_t_repos_uuid_set
    __swig_getmethods__["repos_uuid"] = _client.svn_client_status_t_repos_uuid_get
    __swig_setmethods__["repos_relpath"] = _client.svn_client_status_t_repos_relpath_set
    __swig_getmethods__["repos_relpath"] = _client.svn_client_status_t_repos_relpath_get
    __swig_setmethods__["revision"] = _client.svn_client_status_t_revision_set
    __swig_getmethods__["revision"] = _client.svn_client_status_t_revision_get
    __swig_setmethods__["changed_rev"] = _client.svn_client_status_t_changed_rev_set
    __swig_getmethods__["changed_rev"] = _client.svn_client_status_t_changed_rev_get
    __swig_setmethods__["changed_date"] = _client.svn_client_status_t_changed_date_set
    __swig_getmethods__["changed_date"] = _client.svn_client_status_t_changed_date_get
    __swig_setmethods__["changed_author"] = _client.svn_client_status_t_changed_author_set
    __swig_getmethods__["changed_author"] = _client.svn_client_status_t_changed_author_get
    __swig_setmethods__["switched"] = _client.svn_client_status_t_switched_set
    __swig_getmethods__["switched"] = _client.svn_client_status_t_switched_get
    __swig_setmethods__["file_external"] = _client.svn_client_status_t_file_external_set
    __swig_getmethods__["file_external"] = _client.svn_client_status_t_file_external_get
    __swig_setmethods__["lock"] = _client.svn_client_status_t_lock_set
    __swig_getmethods__["lock"] = _client.svn_client_status_t_lock_get
    __swig_setmethods__["changelist"] = _client.svn_client_status_t_changelist_set
    __swig_getmethods__["changelist"] = _client.svn_client_status_t_changelist_get
    __swig_setmethods__["depth"] = _client.svn_client_status_t_depth_set
    __swig_getmethods__["depth"] = _client.svn_client_status_t_depth_get
    __swig_setmethods__["ood_kind"] = _client.svn_client_status_t_ood_kind_set
    __swig_getmethods__["ood_kind"] = _client.svn_client_status_t_ood_kind_get
    __swig_setmethods__["repos_node_status"] = _client.svn_client_status_t_repos_node_status_set
    __swig_getmethods__["repos_node_status"] = _client.svn_client_status_t_repos_node_status_get
    __swig_setmethods__["repos_text_status"] = _client.svn_client_status_t_repos_text_status_set
    __swig_getmethods__["repos_text_status"] = _client.svn_client_status_t_repos_text_status_get
    __swig_setmethods__["repos_prop_status"] = _client.svn_client_status_t_repos_prop_status_set
    __swig_getmethods__["repos_prop_status"] = _client.svn_client_status_t_repos_prop_status_get
    __swig_setmethods__["repos_lock"] = _client.svn_client_status_t_repos_lock_set
    __swig_getmethods__["repos_lock"] = _client.svn_client_status_t_repos_lock_get
    __swig_setmethods__["ood_changed_rev"] = _client.svn_client_status_t_ood_changed_rev_set
    __swig_getmethods__["ood_changed_rev"] = _client.svn_client_status_t_ood_changed_rev_get
    __swig_setmethods__["ood_changed_date"] = _client.svn_client_status_t_ood_changed_date_set
    __swig_getmethods__["ood_changed_date"] = _client.svn_client_status_t_ood_changed_date_get
    __swig_setmethods__["ood_changed_author"] = _client.svn_client_status_t_ood_changed_author_set
    __swig_getmethods__["ood_changed_author"] = _client.svn_client_status_t_ood_changed_author_get
    __swig_setmethods__["backwards_compatibility_baton"] = _client.svn_client_status_t_backwards_compatibility_baton_set
    __swig_getmethods__["backwards_compatibility_baton"] = _client.svn_client_status_t_backwards_compatibility_baton_get
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_status_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __init__(self): 
        """__init__(self) -> svn_client_status_t"""
        this = _client.new_svn_client_status_t()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _client.delete_svn_client_status_t
    __del__ = lambda self : None;
svn_client_status_t_swigregister = _client.svn_client_status_t_swigregister
svn_client_status_t_swigregister(svn_client_status_t)


def svn_client_status_dup(*args):
  """svn_client_status_dup(svn_client_status_t status, apr_pool_t result_pool) -> svn_client_status_t"""
  return _client.svn_client_status_dup(*args)

def svn_client_status5(*args):
  """
    svn_client_status5(svn_client_ctx_t ctx, char path, svn_opt_revision_t revision, 
        svn_depth_t depth, svn_boolean_t get_all, 
        svn_boolean_t update, svn_boolean_t no_ignore, 
        svn_boolean_t ignore_externals, svn_boolean_t depth_as_sticky, 
        apr_array_header_t changelists, 
        svn_client_status_func_t status_func, 
        void status_baton, apr_pool_t scratch_pool) -> svn_error_t
    """
  return _client.svn_client_status5(*args)

def svn_client_status4(*args):
  """
    svn_client_status4(char path, svn_opt_revision_t revision, svn_wc_status_func3_t status_func, 
        void status_baton, svn_depth_t depth, 
        svn_boolean_t get_all, svn_boolean_t update, 
        svn_boolean_t no_ignore, svn_boolean_t ignore_externals, 
        apr_array_header_t changelists, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_status4(*args)

def svn_client_status3(*args):
  """
    svn_client_status3(char path, svn_opt_revision_t revision, svn_wc_status_func2_t status_func, 
        svn_depth_t depth, svn_boolean_t get_all, 
        svn_boolean_t update, svn_boolean_t no_ignore, 
        svn_boolean_t ignore_externals, 
        apr_array_header_t changelists, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_status3(*args)

def svn_client_status2(*args):
  """
    svn_client_status2(char path, svn_opt_revision_t revision, svn_wc_status_func2_t status_func, 
        svn_boolean_t recurse, 
        svn_boolean_t get_all, svn_boolean_t update, 
        svn_boolean_t no_ignore, svn_boolean_t ignore_externals, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_status2(*args)

def svn_client_status(*args):
  """
    svn_client_status(char path, svn_opt_revision_t revision, svn_wc_status_func_t status_func, 
        svn_boolean_t recurse, 
        svn_boolean_t get_all, svn_boolean_t update, 
        svn_boolean_t no_ignore, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_status(*args)

def svn_client_log5(*args):
  """
    svn_client_log5(apr_array_header_t targets, svn_opt_revision_t peg_revision, 
        apr_array_header_t revision_ranges, 
        int limit, svn_boolean_t discover_changed_paths, 
        svn_boolean_t strict_node_history, svn_boolean_t include_merged_revisions, 
        apr_array_header_t revprops, 
        svn_log_entry_receiver_t receiver, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_log5(*args)

def svn_client_log4(*args):
  """
    svn_client_log4(apr_array_header_t targets, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t start, svn_opt_revision_t end, 
        int limit, svn_boolean_t discover_changed_paths, 
        svn_boolean_t strict_node_history, 
        svn_boolean_t include_merged_revisions, 
        apr_array_header_t revprops, svn_log_entry_receiver_t receiver, 
        svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_log4(*args)

def svn_client_log3(*args):
  """
    svn_client_log3(apr_array_header_t targets, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t start, svn_opt_revision_t end, 
        int limit, svn_boolean_t discover_changed_paths, 
        svn_boolean_t strict_node_history, 
        svn_log_message_receiver_t receiver, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_log3(*args)

def svn_client_log2(*args):
  """
    svn_client_log2(apr_array_header_t targets, svn_opt_revision_t start, 
        svn_opt_revision_t end, int limit, svn_boolean_t discover_changed_paths, 
        svn_boolean_t strict_node_history, 
        svn_log_message_receiver_t receiver, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_log2(*args)

def svn_client_log(*args):
  """
    svn_client_log(apr_array_header_t targets, svn_opt_revision_t start, 
        svn_opt_revision_t end, svn_boolean_t discover_changed_paths, 
        svn_boolean_t strict_node_history, 
        svn_log_message_receiver_t receiver, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_log(*args)

def svn_client_blame5(*args):
  """
    svn_client_blame5(char path_or_url, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t start, svn_opt_revision_t end, 
        svn_diff_file_options_t diff_options, svn_boolean_t ignore_mime_type, 
        svn_boolean_t include_merged_revisions, 
        svn_client_blame_receiver3_t receiver, 
        void receiver_baton, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_blame5(*args)

def svn_client_blame4(*args):
  """
    svn_client_blame4(char path_or_url, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t start, svn_opt_revision_t end, 
        svn_diff_file_options_t diff_options, svn_boolean_t ignore_mime_type, 
        svn_boolean_t include_merged_revisions, 
        svn_client_blame_receiver2_t receiver, 
        void receiver_baton, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_blame4(*args)

def svn_client_blame3(*args):
  """
    svn_client_blame3(char path_or_url, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t start, svn_opt_revision_t end, 
        svn_diff_file_options_t diff_options, svn_boolean_t ignore_mime_type, 
        svn_client_blame_receiver_t receiver, 
        svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_blame3(*args)

def svn_client_blame2(*args):
  """
    svn_client_blame2(char path_or_url, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t start, svn_opt_revision_t end, 
        svn_client_blame_receiver_t receiver, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_blame2(*args)

def svn_client_blame(*args):
  """
    svn_client_blame(char path_or_url, svn_opt_revision_t start, svn_opt_revision_t end, 
        svn_client_blame_receiver_t receiver, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_blame(*args)

def svn_client_diff5(*args):
  """
    svn_client_diff5(apr_array_header_t diff_options, char path1, svn_opt_revision_t revision1, 
        char path2, svn_opt_revision_t revision2, 
        char relative_to_dir, svn_depth_t depth, 
        svn_boolean_t ignore_ancestry, 
        svn_boolean_t no_diff_deleted, svn_boolean_t show_copies_as_adds, 
        svn_boolean_t ignore_content_type, 
        svn_boolean_t use_git_diff_format, 
        char header_encoding, apr_file_t outfile, 
        apr_file_t errfile, apr_array_header_t changelists, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_diff5(*args)

def svn_client_diff4(*args):
  """
    svn_client_diff4(apr_array_header_t diff_options, char path1, svn_opt_revision_t revision1, 
        char path2, svn_opt_revision_t revision2, 
        char relative_to_dir, svn_depth_t depth, 
        svn_boolean_t ignore_ancestry, 
        svn_boolean_t no_diff_deleted, svn_boolean_t ignore_content_type, 
        char header_encoding, 
        apr_file_t outfile, apr_file_t errfile, apr_array_header_t changelists, 
        svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_diff4(*args)

def svn_client_diff3(*args):
  """
    svn_client_diff3(apr_array_header_t diff_options, char path1, svn_opt_revision_t revision1, 
        char path2, svn_opt_revision_t revision2, 
        svn_boolean_t recurse, svn_boolean_t ignore_ancestry, 
        svn_boolean_t no_diff_deleted, 
        svn_boolean_t ignore_content_type, 
        char header_encoding, apr_file_t outfile, 
        apr_file_t errfile, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_diff3(*args)

def svn_client_diff2(*args):
  """
    svn_client_diff2(apr_array_header_t diff_options, char path1, svn_opt_revision_t revision1, 
        char path2, svn_opt_revision_t revision2, 
        svn_boolean_t recurse, svn_boolean_t ignore_ancestry, 
        svn_boolean_t no_diff_deleted, 
        svn_boolean_t ignore_content_type, 
        apr_file_t outfile, apr_file_t errfile, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_diff2(*args)

def svn_client_diff(*args):
  """
    svn_client_diff(apr_array_header_t diff_options, char path1, svn_opt_revision_t revision1, 
        char path2, svn_opt_revision_t revision2, 
        svn_boolean_t recurse, svn_boolean_t ignore_ancestry, 
        svn_boolean_t no_diff_deleted, 
        apr_file_t outfile, apr_file_t errfile, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_diff(*args)

def svn_client_diff_peg5(*args):
  """
    svn_client_diff_peg5(apr_array_header_t diff_options, char path, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t start_revision, 
        svn_opt_revision_t end_revision, 
        char relative_to_dir, svn_depth_t depth, 
        svn_boolean_t ignore_ancestry, svn_boolean_t no_diff_deleted, 
        svn_boolean_t show_copies_as_adds, 
        svn_boolean_t ignore_content_type, svn_boolean_t use_git_diff_format, 
        char header_encoding, 
        apr_file_t outfile, apr_file_t errfile, 
        apr_array_header_t changelists, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_diff_peg5(*args)

def svn_client_diff_peg4(*args):
  """
    svn_client_diff_peg4(apr_array_header_t diff_options, char path, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t start_revision, 
        svn_opt_revision_t end_revision, 
        char relative_to_dir, svn_depth_t depth, 
        svn_boolean_t ignore_ancestry, svn_boolean_t no_diff_deleted, 
        svn_boolean_t ignore_content_type, 
        char header_encoding, apr_file_t outfile, 
        apr_file_t errfile, apr_array_header_t changelists, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_diff_peg4(*args)

def svn_client_diff_peg3(*args):
  """
    svn_client_diff_peg3(apr_array_header_t diff_options, char path, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t start_revision, 
        svn_opt_revision_t end_revision, 
        svn_boolean_t recurse, svn_boolean_t ignore_ancestry, 
        svn_boolean_t no_diff_deleted, svn_boolean_t ignore_content_type, 
        char header_encoding, 
        apr_file_t outfile, apr_file_t errfile, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_diff_peg3(*args)

def svn_client_diff_peg2(*args):
  """
    svn_client_diff_peg2(apr_array_header_t diff_options, char path, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t start_revision, 
        svn_opt_revision_t end_revision, 
        svn_boolean_t recurse, svn_boolean_t ignore_ancestry, 
        svn_boolean_t no_diff_deleted, svn_boolean_t ignore_content_type, 
        apr_file_t outfile, 
        apr_file_t errfile, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_diff_peg2(*args)

def svn_client_diff_peg(*args):
  """
    svn_client_diff_peg(apr_array_header_t diff_options, char path, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t start_revision, 
        svn_opt_revision_t end_revision, 
        svn_boolean_t recurse, svn_boolean_t ignore_ancestry, 
        svn_boolean_t no_diff_deleted, apr_file_t outfile, 
        apr_file_t errfile, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_diff_peg(*args)

def svn_client_diff_summarize2(*args):
  """
    svn_client_diff_summarize2(char path1, svn_opt_revision_t revision1, char path2, 
        svn_opt_revision_t revision2, svn_depth_t depth, 
        svn_boolean_t ignore_ancestry, apr_array_header_t changelists, 
        svn_client_diff_summarize_func_t summarize_func, 
        void summarize_baton, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_diff_summarize2(*args)

def svn_client_diff_summarize(*args):
  """
    svn_client_diff_summarize(char path1, svn_opt_revision_t revision1, char path2, 
        svn_opt_revision_t revision2, svn_boolean_t recurse, 
        svn_boolean_t ignore_ancestry, svn_client_diff_summarize_func_t summarize_func, 
        void summarize_baton, 
        svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_diff_summarize(*args)

def svn_client_diff_summarize_peg2(*args):
  """
    svn_client_diff_summarize_peg2(char path, svn_opt_revision_t peg_revision, svn_opt_revision_t start_revision, 
        svn_opt_revision_t end_revision, 
        svn_depth_t depth, svn_boolean_t ignore_ancestry, 
        apr_array_header_t changelists, 
        svn_client_diff_summarize_func_t summarize_func, 
        void summarize_baton, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_diff_summarize_peg2(*args)

def svn_client_diff_summarize_peg(*args):
  """
    svn_client_diff_summarize_peg(char path, svn_opt_revision_t peg_revision, svn_opt_revision_t start_revision, 
        svn_opt_revision_t end_revision, 
        svn_boolean_t recurse, svn_boolean_t ignore_ancestry, 
        svn_client_diff_summarize_func_t summarize_func, 
        void summarize_baton, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_diff_summarize_peg(*args)

def svn_client_merge4(*args):
  """
    svn_client_merge4(char source1, svn_opt_revision_t revision1, char source2, 
        svn_opt_revision_t revision2, char target_wcpath, 
        svn_depth_t depth, svn_boolean_t ignore_ancestry, 
        svn_boolean_t force, svn_boolean_t record_only, 
        svn_boolean_t dry_run, svn_boolean_t allow_mixed_rev, 
        apr_array_header_t merge_options, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_merge4(*args)

def svn_client_merge3(*args):
  """
    svn_client_merge3(char source1, svn_opt_revision_t revision1, char source2, 
        svn_opt_revision_t revision2, char target_wcpath, 
        svn_depth_t depth, svn_boolean_t ignore_ancestry, 
        svn_boolean_t force, svn_boolean_t record_only, 
        svn_boolean_t dry_run, apr_array_header_t merge_options, 
        svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_merge3(*args)

def svn_client_merge2(*args):
  """
    svn_client_merge2(char source1, svn_opt_revision_t revision1, char source2, 
        svn_opt_revision_t revision2, char target_wcpath, 
        svn_boolean_t recurse, svn_boolean_t ignore_ancestry, 
        svn_boolean_t force, svn_boolean_t dry_run, 
        apr_array_header_t merge_options, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_merge2(*args)

def svn_client_merge(*args):
  """
    svn_client_merge(char source1, svn_opt_revision_t revision1, char source2, 
        svn_opt_revision_t revision2, char target_wcpath, 
        svn_boolean_t recurse, svn_boolean_t ignore_ancestry, 
        svn_boolean_t force, svn_boolean_t dry_run, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_merge(*args)

def svn_client_merge_reintegrate(*args):
  """
    svn_client_merge_reintegrate(char source, svn_opt_revision_t peg_revision, char target_wcpath, 
        svn_boolean_t dry_run, apr_array_header_t merge_options, 
        svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_merge_reintegrate(*args)

def svn_client_merge_peg4(*args):
  """
    svn_client_merge_peg4(char source, apr_array_header_t ranges_to_merge, svn_opt_revision_t peg_revision, 
        char target_wcpath, 
        svn_depth_t depth, svn_boolean_t ignore_ancestry, 
        svn_boolean_t force, svn_boolean_t record_only, 
        svn_boolean_t dry_run, svn_boolean_t allow_mixed_rev, 
        apr_array_header_t merge_options, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_merge_peg4(*args)

def svn_client_merge_peg3(*args):
  """
    svn_client_merge_peg3(char source, apr_array_header_t ranges_to_merge, svn_opt_revision_t peg_revision, 
        char target_wcpath, 
        svn_depth_t depth, svn_boolean_t ignore_ancestry, 
        svn_boolean_t force, svn_boolean_t record_only, 
        svn_boolean_t dry_run, apr_array_header_t merge_options, 
        svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_merge_peg3(*args)

def svn_client_merge_peg2(*args):
  """
    svn_client_merge_peg2(char source, svn_opt_revision_t revision1, svn_opt_revision_t revision2, 
        svn_opt_revision_t peg_revision, 
        char target_wcpath, svn_boolean_t recurse, 
        svn_boolean_t ignore_ancestry, svn_boolean_t force, 
        svn_boolean_t dry_run, apr_array_header_t merge_options, 
        svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_merge_peg2(*args)

def svn_client_merge_peg(*args):
  """
    svn_client_merge_peg(char source, svn_opt_revision_t revision1, svn_opt_revision_t revision2, 
        svn_opt_revision_t peg_revision, 
        char target_wcpath, svn_boolean_t recurse, 
        svn_boolean_t ignore_ancestry, svn_boolean_t force, 
        svn_boolean_t dry_run, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_merge_peg(*args)

def svn_client_suggest_merge_sources(*args):
  """
    svn_client_suggest_merge_sources(char path_or_url, svn_opt_revision_t peg_revision, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_suggest_merge_sources(*args)

def svn_client_mergeinfo_get_merged(*args):
  """
    svn_client_mergeinfo_get_merged(char path_or_url, svn_opt_revision_t peg_revision, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_mergeinfo_get_merged(*args)

def svn_client_mergeinfo_log(*args):
  """
    svn_client_mergeinfo_log(svn_boolean_t finding_merged, char path_or_url, svn_opt_revision_t peg_revision, 
        char merge_source_path_or_url, 
        svn_opt_revision_t src_peg_revision, 
        svn_log_entry_receiver_t receiver, svn_boolean_t discover_changed_paths, 
        svn_depth_t depth, 
        apr_array_header_t revprops, svn_client_ctx_t ctx, 
        apr_pool_t scratch_pool) -> svn_error_t
    """
  return _client.svn_client_mergeinfo_log(*args)

def svn_client_mergeinfo_log_merged(*args):
  """
    svn_client_mergeinfo_log_merged(char path_or_url, svn_opt_revision_t peg_revision, 
        char merge_source_path_or_url, svn_opt_revision_t src_peg_revision, 
        svn_log_entry_receiver_t receiver, 
        svn_boolean_t discover_changed_paths, 
        apr_array_header_t revprops, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_mergeinfo_log_merged(*args)

def svn_client_mergeinfo_log_eligible(*args):
  """
    svn_client_mergeinfo_log_eligible(char path_or_url, svn_opt_revision_t peg_revision, 
        char merge_source_path_or_url, svn_opt_revision_t src_peg_revision, 
        svn_log_entry_receiver_t receiver, 
        svn_boolean_t discover_changed_paths, 
        apr_array_header_t revprops, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_mergeinfo_log_eligible(*args)

def svn_client_cleanup(*args):
  """svn_client_cleanup(char dir, svn_client_ctx_t ctx, apr_pool_t scratch_pool) -> svn_error_t"""
  return _client.svn_client_cleanup(*args)

def svn_client_upgrade(*args):
  """svn_client_upgrade(char wcroot_dir, svn_client_ctx_t ctx, apr_pool_t scratch_pool) -> svn_error_t"""
  return _client.svn_client_upgrade(*args)

def svn_client_relocate2(*args):
  """
    svn_client_relocate2(char wcroot_dir, char from_prefix, char to_prefix, 
        svn_boolean_t ignore_externals, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_relocate2(*args)

def svn_client_relocate(*args):
  """
    svn_client_relocate(char dir, char from_prefix, char to_prefix, svn_boolean_t recurse, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_relocate(*args)

def svn_client_revert2(*args):
  """
    svn_client_revert2(apr_array_header_t paths, svn_depth_t depth, apr_array_header_t changelists, 
        svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_revert2(*args)

def svn_client_revert(*args):
  """
    svn_client_revert(apr_array_header_t paths, svn_boolean_t recursive, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_revert(*args)

def svn_client_resolved(*args):
  """
    svn_client_resolved(char path, svn_boolean_t recursive, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_resolved(*args)

def svn_client_resolve(*args):
  """
    svn_client_resolve(char path, svn_depth_t depth, svn_wc_conflict_choice_t conflict_choice, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_resolve(*args)
class svn_client_copy_source_t:
    """Proxy of C svn_client_copy_source_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_copy_source_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_copy_source_t, name)
    __repr__ = _swig_repr
    __swig_setmethods__["path"] = _client.svn_client_copy_source_t_path_set
    __swig_getmethods__["path"] = _client.svn_client_copy_source_t_path_get
    __swig_setmethods__["revision"] = _client.svn_client_copy_source_t_revision_set
    __swig_getmethods__["revision"] = _client.svn_client_copy_source_t_revision_get
    __swig_setmethods__["peg_revision"] = _client.svn_client_copy_source_t_peg_revision_set
    __swig_getmethods__["peg_revision"] = _client.svn_client_copy_source_t_peg_revision_get
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_copy_source_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __init__(self): 
        """__init__(self) -> svn_client_copy_source_t"""
        this = _client.new_svn_client_copy_source_t()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _client.delete_svn_client_copy_source_t
    __del__ = lambda self : None;
svn_client_copy_source_t_swigregister = _client.svn_client_copy_source_t_swigregister
svn_client_copy_source_t_swigregister(svn_client_copy_source_t)


def svn_client_copy6(*args):
  """
    svn_client_copy6(apr_array_header_t sources, char dst_path, svn_boolean_t copy_as_child, 
        svn_boolean_t make_parents, 
        svn_boolean_t ignore_externals, apr_hash_t revprop_table, 
        svn_commit_callback2_t commit_callback, 
        void commit_baton, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_copy6(*args)

def svn_client_copy5(*args):
  """
    svn_client_copy5(apr_array_header_t sources, char dst_path, svn_boolean_t copy_as_child, 
        svn_boolean_t make_parents, 
        svn_boolean_t ignore_externals, apr_hash_t revprop_table, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_copy5(*args)

def svn_client_copy4(*args):
  """
    svn_client_copy4(apr_array_header_t sources, char dst_path, svn_boolean_t copy_as_child, 
        svn_boolean_t make_parents, 
        apr_hash_t revprop_table, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_copy4(*args)

def svn_client_copy3(*args):
  """
    svn_client_copy3(char src_path, svn_opt_revision_t src_revision, char dst_path, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_copy3(*args)

def svn_client_copy2(*args):
  """
    svn_client_copy2(char src_path, svn_opt_revision_t src_revision, char dst_path, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_copy2(*args)

def svn_client_copy(*args):
  """
    svn_client_copy(char src_path, svn_opt_revision_t src_revision, char dst_path, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_copy(*args)

def svn_client_move6(*args):
  """
    svn_client_move6(apr_array_header_t src_paths, char dst_path, svn_boolean_t move_as_child, 
        svn_boolean_t make_parents, 
        apr_hash_t revprop_table, svn_commit_callback2_t commit_callback, 
        void commit_baton, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_move6(*args)

def svn_client_move5(*args):
  """
    svn_client_move5(apr_array_header_t src_paths, char dst_path, svn_boolean_t force, 
        svn_boolean_t move_as_child, svn_boolean_t make_parents, 
        apr_hash_t revprop_table, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_move5(*args)

def svn_client_move4(*args):
  """
    svn_client_move4(char src_path, char dst_path, svn_boolean_t force, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_move4(*args)

def svn_client_move3(*args):
  """
    svn_client_move3(char src_path, char dst_path, svn_boolean_t force, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_move3(*args)

def svn_client_move2(*args):
  """
    svn_client_move2(char src_path, char dst_path, svn_boolean_t force, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_move2(*args)

def svn_client_move(*args):
  """
    svn_client_move(char src_path, svn_opt_revision_t src_revision, char dst_path, 
        svn_boolean_t force, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_move(*args)

def svn_client_propset_remote(*args):
  """
    svn_client_propset_remote(char propname, svn_string_t propval, char url, svn_boolean_t skip_checks, 
        svn_revnum_t base_revision_for_url, 
        apr_hash_t revprop_table, svn_commit_callback2_t commit_callback, 
        void commit_baton, 
        svn_client_ctx_t ctx, apr_pool_t scratch_pool) -> svn_error_t
    """
  return _client.svn_client_propset_remote(*args)

def svn_client_propset_local(*args):
  """
    svn_client_propset_local(char propname, svn_string_t propval, apr_array_header_t targets, 
        svn_depth_t depth, svn_boolean_t skip_checks, 
        apr_array_header_t changelists, 
        svn_client_ctx_t ctx, apr_pool_t scratch_pool) -> svn_error_t
    """
  return _client.svn_client_propset_local(*args)

def svn_client_propset3(*args):
  """
    svn_client_propset3(char propname, svn_string_t propval, char target, svn_depth_t depth, 
        svn_boolean_t skip_checks, 
        svn_revnum_t base_revision_for_url, apr_array_header_t changelists, 
        apr_hash_t revprop_table, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_propset3(*args)

def svn_client_propset2(*args):
  """
    svn_client_propset2(char propname, svn_string_t propval, char target, svn_boolean_t recurse, 
        svn_boolean_t skip_checks, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_propset2(*args)

def svn_client_propset(*args):
  """
    svn_client_propset(char propname, svn_string_t propval, char target, svn_boolean_t recurse, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_propset(*args)

def svn_client_revprop_set2(*args):
  """
    svn_client_revprop_set2(char propname, svn_string_t propval, svn_string_t original_propval, 
        char URL, svn_opt_revision_t revision, 
        svn_boolean_t force, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_revprop_set2(*args)

def svn_client_revprop_set(*args):
  """
    svn_client_revprop_set(char propname, svn_string_t propval, char URL, svn_opt_revision_t revision, 
        svn_boolean_t force, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_revprop_set(*args)

def svn_client_propget4(*args):
  """
    svn_client_propget4(char propname, char target, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, svn_depth_t depth, 
        apr_array_header_t changelists, 
        svn_client_ctx_t ctx, apr_pool_t result_pool, 
        apr_pool_t scratch_pool) -> svn_error_t
    """
  return _client.svn_client_propget4(*args)

def svn_client_propget3(*args):
  """
    svn_client_propget3(char propname, char target, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, svn_depth_t depth, 
        apr_array_header_t changelists, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_propget3(*args)

def svn_client_propget2(*args):
  """
    svn_client_propget2(char propname, char target, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, svn_boolean_t recurse, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_propget2(*args)

def svn_client_propget(*args):
  """
    svn_client_propget(char propname, char target, svn_opt_revision_t revision, 
        svn_boolean_t recurse, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_propget(*args)

def svn_client_revprop_get(*args):
  """
    svn_client_revprop_get(char propname, char URL, svn_opt_revision_t revision, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_revprop_get(*args)

def svn_client_proplist3(*args):
  """
    svn_client_proplist3(char target, svn_opt_revision_t peg_revision, svn_opt_revision_t revision, 
        svn_depth_t depth, apr_array_header_t changelists, 
        svn_proplist_receiver_t receiver, 
        void receiver_baton, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_proplist3(*args)

def svn_client_proplist2(*args):
  """
    svn_client_proplist2(char target, svn_opt_revision_t peg_revision, svn_opt_revision_t revision, 
        svn_boolean_t recurse, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_proplist2(*args)

def svn_client_proplist(*args):
  """
    svn_client_proplist(char target, svn_opt_revision_t revision, svn_boolean_t recurse, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_proplist(*args)

def svn_client_revprop_list(*args):
  """
    svn_client_revprop_list(char URL, svn_opt_revision_t revision, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_revprop_list(*args)

def svn_client_export5(*args):
  """
    svn_client_export5(char from_path_or_url, char to_path, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, 
        svn_boolean_t overwrite, svn_boolean_t ignore_externals, 
        svn_boolean_t ignore_keywords, 
        svn_depth_t depth, char native_eol, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_export5(*args)

def svn_client_export4(*args):
  """
    svn_client_export4(char from_path_or_url, char to_path, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, 
        svn_boolean_t overwrite, svn_boolean_t ignore_externals, 
        svn_depth_t depth, char native_eol, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_export4(*args)

def svn_client_export3(*args):
  """
    svn_client_export3(char from_path_or_url, char to_path, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, 
        svn_boolean_t overwrite, svn_boolean_t ignore_externals, 
        svn_boolean_t recurse, char native_eol, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_export3(*args)

def svn_client_export2(*args):
  """
    svn_client_export2(char from_path_or_url, char to_path, svn_opt_revision_t revision, 
        svn_boolean_t force, char native_eol, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_export2(*args)

def svn_client_export(*args):
  """
    svn_client_export(char from_path_or_url, char to_path, svn_opt_revision_t revision, 
        svn_boolean_t force, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_export(*args)

def svn_client_list2(*args):
  """
    svn_client_list2(char path_or_url, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, svn_depth_t depth, 
        apr_uint32_t dirent_fields, svn_boolean_t fetch_locks, 
        svn_client_list_func_t list_func, 
        void baton, svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_list2(*args)

def svn_client_list(*args):
  """
    svn_client_list(char path_or_url, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, svn_boolean_t recurse, 
        apr_uint32_t dirent_fields, svn_boolean_t fetch_locks, 
        svn_client_list_func_t list_func, 
        void baton, svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_list(*args)

def svn_client_ls3(*args):
  """
    svn_client_ls3(char path_or_url, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, svn_boolean_t recurse, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_ls3(*args)

def svn_client_ls2(*args):
  """
    svn_client_ls2(char path_or_url, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, svn_boolean_t recurse, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_ls2(*args)

def svn_client_ls(*args):
  """
    svn_client_ls(char path_or_url, svn_opt_revision_t revision, svn_boolean_t recurse, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_ls(*args)

def svn_client_cat2(*args):
  """
    svn_client_cat2(svn_stream_t out, char path_or_url, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_cat2(*args)

def svn_client_cat(*args):
  """
    svn_client_cat(svn_stream_t out, char path_or_url, svn_opt_revision_t revision, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_cat(*args)

def svn_client_add_to_changelist(*args):
  """
    svn_client_add_to_changelist(apr_array_header_t paths, char changelist, svn_depth_t depth, 
        apr_array_header_t changelists, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_add_to_changelist(*args)

def svn_client_remove_from_changelists(*args):
  """
    svn_client_remove_from_changelists(apr_array_header_t paths, svn_depth_t depth, apr_array_header_t changelists, 
        svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_remove_from_changelists(*args)

def svn_client_get_changelists(*args):
  """
    svn_client_get_changelists(char path, apr_array_header_t changelists, svn_depth_t depth, 
        svn_changelist_receiver_t callback_func, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_get_changelists(*args)

def svn_client_lock(*args):
  """
    svn_client_lock(apr_array_header_t targets, char comment, svn_boolean_t steal_lock, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_lock(*args)

def svn_client_unlock(*args):
  """
    svn_client_unlock(apr_array_header_t targets, svn_boolean_t break_lock, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_unlock(*args)
class svn_info_t:
    """Proxy of C svn_info_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_info_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_info_t, name)
    __repr__ = _swig_repr
    __swig_setmethods__["URL"] = _client.svn_info_t_URL_set
    __swig_getmethods__["URL"] = _client.svn_info_t_URL_get
    __swig_setmethods__["rev"] = _client.svn_info_t_rev_set
    __swig_getmethods__["rev"] = _client.svn_info_t_rev_get
    __swig_setmethods__["kind"] = _client.svn_info_t_kind_set
    __swig_getmethods__["kind"] = _client.svn_info_t_kind_get
    __swig_setmethods__["repos_root_URL"] = _client.svn_info_t_repos_root_URL_set
    __swig_getmethods__["repos_root_URL"] = _client.svn_info_t_repos_root_URL_get
    __swig_setmethods__["repos_UUID"] = _client.svn_info_t_repos_UUID_set
    __swig_getmethods__["repos_UUID"] = _client.svn_info_t_repos_UUID_get
    __swig_setmethods__["last_changed_rev"] = _client.svn_info_t_last_changed_rev_set
    __swig_getmethods__["last_changed_rev"] = _client.svn_info_t_last_changed_rev_get
    __swig_setmethods__["last_changed_date"] = _client.svn_info_t_last_changed_date_set
    __swig_getmethods__["last_changed_date"] = _client.svn_info_t_last_changed_date_get
    __swig_setmethods__["last_changed_author"] = _client.svn_info_t_last_changed_author_set
    __swig_getmethods__["last_changed_author"] = _client.svn_info_t_last_changed_author_get
    __swig_setmethods__["lock"] = _client.svn_info_t_lock_set
    __swig_getmethods__["lock"] = _client.svn_info_t_lock_get
    __swig_setmethods__["has_wc_info"] = _client.svn_info_t_has_wc_info_set
    __swig_getmethods__["has_wc_info"] = _client.svn_info_t_has_wc_info_get
    __swig_setmethods__["schedule"] = _client.svn_info_t_schedule_set
    __swig_getmethods__["schedule"] = _client.svn_info_t_schedule_get
    __swig_setmethods__["copyfrom_url"] = _client.svn_info_t_copyfrom_url_set
    __swig_getmethods__["copyfrom_url"] = _client.svn_info_t_copyfrom_url_get
    __swig_setmethods__["copyfrom_rev"] = _client.svn_info_t_copyfrom_rev_set
    __swig_getmethods__["copyfrom_rev"] = _client.svn_info_t_copyfrom_rev_get
    __swig_setmethods__["text_time"] = _client.svn_info_t_text_time_set
    __swig_getmethods__["text_time"] = _client.svn_info_t_text_time_get
    __swig_setmethods__["prop_time"] = _client.svn_info_t_prop_time_set
    __swig_getmethods__["prop_time"] = _client.svn_info_t_prop_time_get
    __swig_setmethods__["checksum"] = _client.svn_info_t_checksum_set
    __swig_getmethods__["checksum"] = _client.svn_info_t_checksum_get
    __swig_setmethods__["conflict_old"] = _client.svn_info_t_conflict_old_set
    __swig_getmethods__["conflict_old"] = _client.svn_info_t_conflict_old_get
    __swig_setmethods__["conflict_new"] = _client.svn_info_t_conflict_new_set
    __swig_getmethods__["conflict_new"] = _client.svn_info_t_conflict_new_get
    __swig_setmethods__["conflict_wrk"] = _client.svn_info_t_conflict_wrk_set
    __swig_getmethods__["conflict_wrk"] = _client.svn_info_t_conflict_wrk_get
    __swig_setmethods__["prejfile"] = _client.svn_info_t_prejfile_set
    __swig_getmethods__["prejfile"] = _client.svn_info_t_prejfile_get
    __swig_setmethods__["changelist"] = _client.svn_info_t_changelist_set
    __swig_getmethods__["changelist"] = _client.svn_info_t_changelist_get
    __swig_setmethods__["depth"] = _client.svn_info_t_depth_set
    __swig_getmethods__["depth"] = _client.svn_info_t_depth_get
    __swig_setmethods__["working_size"] = _client.svn_info_t_working_size_set
    __swig_getmethods__["working_size"] = _client.svn_info_t_working_size_get
    __swig_setmethods__["size"] = _client.svn_info_t_size_set
    __swig_getmethods__["size"] = _client.svn_info_t_size_get
    __swig_setmethods__["size64"] = _client.svn_info_t_size64_set
    __swig_getmethods__["size64"] = _client.svn_info_t_size64_get
    __swig_setmethods__["working_size64"] = _client.svn_info_t_working_size64_set
    __swig_getmethods__["working_size64"] = _client.svn_info_t_working_size64_get
    __swig_setmethods__["tree_conflict"] = _client.svn_info_t_tree_conflict_set
    __swig_getmethods__["tree_conflict"] = _client.svn_info_t_tree_conflict_get
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_info_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __init__(self): 
        """__init__(self) -> svn_info_t"""
        this = _client.new_svn_info_t()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _client.delete_svn_info_t
    __del__ = lambda self : None;
svn_info_t_swigregister = _client.svn_info_t_swigregister
svn_info_t_swigregister(svn_info_t)


def svn_info_dup(*args):
  """svn_info_dup(svn_info_t info, apr_pool_t pool) -> svn_info_t"""
  return _client.svn_info_dup(*args)
class svn_client_info2_t:
    """Proxy of C svn_client_info2_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_info2_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_info2_t, name)
    __repr__ = _swig_repr
    __swig_setmethods__["URL"] = _client.svn_client_info2_t_URL_set
    __swig_getmethods__["URL"] = _client.svn_client_info2_t_URL_get
    __swig_setmethods__["rev"] = _client.svn_client_info2_t_rev_set
    __swig_getmethods__["rev"] = _client.svn_client_info2_t_rev_get
    __swig_setmethods__["repos_root_URL"] = _client.svn_client_info2_t_repos_root_URL_set
    __swig_getmethods__["repos_root_URL"] = _client.svn_client_info2_t_repos_root_URL_get
    __swig_setmethods__["repos_UUID"] = _client.svn_client_info2_t_repos_UUID_set
    __swig_getmethods__["repos_UUID"] = _client.svn_client_info2_t_repos_UUID_get
    __swig_setmethods__["kind"] = _client.svn_client_info2_t_kind_set
    __swig_getmethods__["kind"] = _client.svn_client_info2_t_kind_get
    __swig_setmethods__["size"] = _client.svn_client_info2_t_size_set
    __swig_getmethods__["size"] = _client.svn_client_info2_t_size_get
    __swig_setmethods__["last_changed_rev"] = _client.svn_client_info2_t_last_changed_rev_set
    __swig_getmethods__["last_changed_rev"] = _client.svn_client_info2_t_last_changed_rev_get
    __swig_setmethods__["last_changed_date"] = _client.svn_client_info2_t_last_changed_date_set
    __swig_getmethods__["last_changed_date"] = _client.svn_client_info2_t_last_changed_date_get
    __swig_setmethods__["last_changed_author"] = _client.svn_client_info2_t_last_changed_author_set
    __swig_getmethods__["last_changed_author"] = _client.svn_client_info2_t_last_changed_author_get
    __swig_setmethods__["lock"] = _client.svn_client_info2_t_lock_set
    __swig_getmethods__["lock"] = _client.svn_client_info2_t_lock_get
    __swig_setmethods__["wc_info"] = _client.svn_client_info2_t_wc_info_set
    __swig_getmethods__["wc_info"] = _client.svn_client_info2_t_wc_info_get
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_info2_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __init__(self): 
        """__init__(self) -> svn_client_info2_t"""
        this = _client.new_svn_client_info2_t()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _client.delete_svn_client_info2_t
    __del__ = lambda self : None;
svn_client_info2_t_swigregister = _client.svn_client_info2_t_swigregister
svn_client_info2_t_swigregister(svn_client_info2_t)


def svn_client_info2_dup(*args):
  """svn_client_info2_dup(svn_client_info2_t info, apr_pool_t pool) -> svn_client_info2_t"""
  return _client.svn_client_info2_dup(*args)

def svn_client_info3(*args):
  """
    svn_client_info3(char abspath_or_url, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, svn_depth_t depth, 
        svn_boolean_t fetch_excluded, svn_boolean_t fetch_actual_only, 
        apr_array_header_t changelists, 
        svn_client_info_receiver2_t receiver, 
        void receiver_baton, svn_client_ctx_t ctx, 
        apr_pool_t scratch_pool) -> svn_error_t
    """
  return _client.svn_client_info3(*args)

def svn_client_info2(*args):
  """
    svn_client_info2(char path_or_url, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, svn_info_receiver_t receiver, 
        svn_depth_t depth, apr_array_header_t changelists, 
        svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_info2(*args)

def svn_client_info(*args):
  """
    svn_client_info(char path_or_url, svn_opt_revision_t peg_revision, 
        svn_opt_revision_t revision, svn_info_receiver_t receiver, 
        svn_boolean_t recurse, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_info(*args)

def svn_client_get_wc_root(*args):
  """
    svn_client_get_wc_root(char local_abspath, svn_client_ctx_t ctx, apr_pool_t result_pool, 
        apr_pool_t scratch_pool) -> svn_error_t
    """
  return _client.svn_client_get_wc_root(*args)

def svn_client_min_max_revisions(*args):
  """
    svn_client_min_max_revisions(char local_abspath, svn_boolean_t committed, svn_client_ctx_t ctx, 
        apr_pool_t scratch_pool) -> svn_error_t
    """
  return _client.svn_client_min_max_revisions(*args)

def svn_client_patch(*args):
  """
    svn_client_patch(char patch_abspath, char wc_dir_abspath, svn_boolean_t dry_run, 
        int strip_count, svn_boolean_t reverse, 
        svn_boolean_t ignore_whitespace, svn_boolean_t remove_tempfiles, 
        svn_client_patch_func_t patch_func, 
        void patch_baton, svn_client_ctx_t ctx, 
        apr_pool_t scratch_pool) -> svn_error_t
    """
  return _client.svn_client_patch(*args)

def svn_client_url_from_path2(*args):
  """
    svn_client_url_from_path2(char path_or_url, svn_client_ctx_t ctx, apr_pool_t result_pool, 
        apr_pool_t scratch_pool) -> svn_error_t
    """
  return _client.svn_client_url_from_path2(*args)

def svn_client_url_from_path(*args):
  """svn_client_url_from_path(char path_or_url, apr_pool_t pool) -> svn_error_t"""
  return _client.svn_client_url_from_path(*args)

def svn_client_root_url_from_path(*args):
  """svn_client_root_url_from_path(char path_or_url, svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t"""
  return _client.svn_client_root_url_from_path(*args)

def svn_client_uuid_from_url(*args):
  """svn_client_uuid_from_url(char url, svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t"""
  return _client.svn_client_uuid_from_url(*args)

def svn_client_uuid_from_path2(*args):
  """
    svn_client_uuid_from_path2(char local_abspath, svn_client_ctx_t ctx, apr_pool_t result_pool, 
        apr_pool_t scratch_pool) -> svn_error_t
    """
  return _client.svn_client_uuid_from_path2(*args)

def svn_client_uuid_from_path(*args):
  """
    svn_client_uuid_from_path(char path, svn_wc_adm_access_t adm_access, svn_client_ctx_t ctx, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_uuid_from_path(*args)

def svn_client_open_ra_session(*args):
  """svn_client_open_ra_session(char url, svn_client_ctx_t ctx, apr_pool_t pool) -> svn_error_t"""
  return _client.svn_client_open_ra_session(*args)

def svn_proplist_invoke_receiver(*args):
  """
    svn_proplist_invoke_receiver(svn_proplist_receiver_t _obj, void baton, char path, 
        apr_hash_t prop_hash, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_proplist_invoke_receiver(*args)

def svn_client_invoke_get_commit_log3(*args):
  """
    svn_client_invoke_get_commit_log3(svn_client_get_commit_log3_t _obj, apr_array_header_t commit_items, 
        void baton, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_invoke_get_commit_log3(*args)

def svn_client_invoke_get_commit_log2(*args):
  """
    svn_client_invoke_get_commit_log2(svn_client_get_commit_log2_t _obj, apr_array_header_t commit_items, 
        void baton, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_invoke_get_commit_log2(*args)

def svn_client_invoke_get_commit_log(*args):
  """
    svn_client_invoke_get_commit_log(svn_client_get_commit_log_t _obj, apr_array_header_t commit_items, 
        void baton, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_invoke_get_commit_log(*args)

def svn_client_invoke_blame_receiver3(*args):
  """
    svn_client_invoke_blame_receiver3(svn_client_blame_receiver3_t _obj, void baton, svn_revnum_t start_revnum, 
        svn_revnum_t end_revnum, 
        apr_int64_t line_no, svn_revnum_t revision, 
        apr_hash_t rev_props, svn_revnum_t merged_revision, 
        apr_hash_t merged_rev_props, char merged_path, 
        char line, svn_boolean_t local_change, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_invoke_blame_receiver3(*args)

def svn_client_invoke_blame_receiver2(*args):
  """
    svn_client_invoke_blame_receiver2(svn_client_blame_receiver2_t _obj, void baton, apr_int64_t line_no, 
        svn_revnum_t revision, char author, 
        char date, svn_revnum_t merged_revision, 
        char merged_author, char merged_date, char merged_path, 
        char line, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_invoke_blame_receiver2(*args)

def svn_client_invoke_blame_receiver(*args):
  """
    svn_client_invoke_blame_receiver(svn_client_blame_receiver_t _obj, void baton, apr_int64_t line_no, 
        svn_revnum_t revision, char author, 
        char date, char line, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_invoke_blame_receiver(*args)

def svn_client_invoke_diff_summarize_func(*args):
  """
    svn_client_invoke_diff_summarize_func(svn_client_diff_summarize_func_t _obj, svn_client_diff_summarize_t diff, 
        void baton, apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_invoke_diff_summarize_func(*args)

def svn_client_invoke_status_func(*args):
  """
    svn_client_invoke_status_func(svn_client_status_func_t _obj, void baton, char path, 
        svn_client_status_t status, apr_pool_t scratch_pool) -> svn_error_t
    """
  return _client.svn_client_invoke_status_func(*args)

def svn_client_invoke_list_func(*args):
  """
    svn_client_invoke_list_func(svn_client_list_func_t _obj, void baton, char path, 
        svn_dirent_t dirent, svn_lock_t lock, char abs_path, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_client_invoke_list_func(*args)

def svn_info_invoke_receiver(*args):
  """
    svn_info_invoke_receiver(svn_info_receiver_t _obj, void baton, char path, svn_info_t info, 
        apr_pool_t pool) -> svn_error_t
    """
  return _client.svn_info_invoke_receiver(*args)

def svn_client_invoke_info_receiver2(*args):
  """
    svn_client_invoke_info_receiver2(svn_client_info_receiver2_t _obj, void baton, char abspath_or_url, 
        svn_client_info2_t info, apr_pool_t scratch_pool) -> svn_error_t
    """
  return _client.svn_client_invoke_info_receiver2(*args)

def svn_client_invoke_patch_func(*args):
  """
    svn_client_invoke_patch_func(svn_client_patch_func_t _obj, void baton, char canon_path_from_patchfile, 
        char patch_abspath, char reject_abspath, 
        apr_pool_t scratch_pool) -> svn_error_t
    """
  return _client.svn_client_invoke_patch_func(*args)
class svn_proplist_receiver_t:
    """Proxy of C svn_proplist_receiver_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_proplist_receiver_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_proplist_receiver_t, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
    __repr__ = _swig_repr
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_proplist_receiver_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __call__(self, *args):
      return svn_proplist_invoke_receiver(self, *args)

svn_proplist_receiver_t_swigregister = _client.svn_proplist_receiver_t_swigregister
svn_proplist_receiver_t_swigregister(svn_proplist_receiver_t)

class svn_client_get_commit_log3_t:
    """Proxy of C svn_client_get_commit_log3_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_get_commit_log3_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_get_commit_log3_t, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
    __repr__ = _swig_repr
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_get_commit_log3_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __call__(self, *args):
      return svn_client_invoke_get_commit_log3(self, *args)

svn_client_get_commit_log3_t_swigregister = _client.svn_client_get_commit_log3_t_swigregister
svn_client_get_commit_log3_t_swigregister(svn_client_get_commit_log3_t)

class svn_client_get_commit_log2_t:
    """Proxy of C svn_client_get_commit_log2_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_get_commit_log2_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_get_commit_log2_t, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
    __repr__ = _swig_repr
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_get_commit_log2_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __call__(self, *args):
      return svn_client_invoke_get_commit_log2(self, *args)

svn_client_get_commit_log2_t_swigregister = _client.svn_client_get_commit_log2_t_swigregister
svn_client_get_commit_log2_t_swigregister(svn_client_get_commit_log2_t)

class svn_client_get_commit_log_t:
    """Proxy of C svn_client_get_commit_log_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_get_commit_log_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_get_commit_log_t, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
    __repr__ = _swig_repr
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_get_commit_log_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __call__(self, *args):
      return svn_client_invoke_get_commit_log(self, *args)

svn_client_get_commit_log_t_swigregister = _client.svn_client_get_commit_log_t_swigregister
svn_client_get_commit_log_t_swigregister(svn_client_get_commit_log_t)

class svn_client_blame_receiver3_t:
    """Proxy of C svn_client_blame_receiver3_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_blame_receiver3_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_blame_receiver3_t, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
    __repr__ = _swig_repr
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_blame_receiver3_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __call__(self, *args):
      return svn_client_invoke_blame_receiver3(self, *args)

svn_client_blame_receiver3_t_swigregister = _client.svn_client_blame_receiver3_t_swigregister
svn_client_blame_receiver3_t_swigregister(svn_client_blame_receiver3_t)

class svn_client_blame_receiver2_t:
    """Proxy of C svn_client_blame_receiver2_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_blame_receiver2_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_blame_receiver2_t, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
    __repr__ = _swig_repr
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_blame_receiver2_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __call__(self, *args):
      return svn_client_invoke_blame_receiver2(self, *args)

svn_client_blame_receiver2_t_swigregister = _client.svn_client_blame_receiver2_t_swigregister
svn_client_blame_receiver2_t_swigregister(svn_client_blame_receiver2_t)

class svn_client_blame_receiver_t:
    """Proxy of C svn_client_blame_receiver_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_blame_receiver_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_blame_receiver_t, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
    __repr__ = _swig_repr
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_blame_receiver_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __call__(self, *args):
      return svn_client_invoke_blame_receiver(self, *args)

svn_client_blame_receiver_t_swigregister = _client.svn_client_blame_receiver_t_swigregister
svn_client_blame_receiver_t_swigregister(svn_client_blame_receiver_t)

class svn_client_diff_summarize_func_t:
    """Proxy of C svn_client_diff_summarize_func_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_diff_summarize_func_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_diff_summarize_func_t, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
    __repr__ = _swig_repr
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_diff_summarize_func_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __call__(self, *args):
      return svn_client_invoke_diff_summarize_func(self, *args)

svn_client_diff_summarize_func_t_swigregister = _client.svn_client_diff_summarize_func_t_swigregister
svn_client_diff_summarize_func_t_swigregister(svn_client_diff_summarize_func_t)

class svn_client_status_func_t:
    """Proxy of C svn_client_status_func_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_status_func_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_status_func_t, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
    __repr__ = _swig_repr
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_status_func_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __call__(self, *args):
      return svn_client_invoke_status_func(self, *args)

svn_client_status_func_t_swigregister = _client.svn_client_status_func_t_swigregister
svn_client_status_func_t_swigregister(svn_client_status_func_t)

class svn_client_list_func_t:
    """Proxy of C svn_client_list_func_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_list_func_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_list_func_t, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
    __repr__ = _swig_repr
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_list_func_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __call__(self, *args):
      return svn_client_invoke_list_func(self, *args)

svn_client_list_func_t_swigregister = _client.svn_client_list_func_t_swigregister
svn_client_list_func_t_swigregister(svn_client_list_func_t)

class svn_info_receiver_t:
    """Proxy of C svn_info_receiver_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_info_receiver_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_info_receiver_t, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
    __repr__ = _swig_repr
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_info_receiver_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __call__(self, *args):
      return svn_info_invoke_receiver(self, *args)

svn_info_receiver_t_swigregister = _client.svn_info_receiver_t_swigregister
svn_info_receiver_t_swigregister(svn_info_receiver_t)

class svn_client_info_receiver2_t:
    """Proxy of C svn_client_info_receiver2_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_info_receiver2_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_info_receiver2_t, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
    __repr__ = _swig_repr
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_info_receiver2_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __call__(self, *args):
      return svn_client_invoke_info_receiver2(self, *args)

svn_client_info_receiver2_t_swigregister = _client.svn_client_info_receiver2_t_swigregister
svn_client_info_receiver2_t_swigregister(svn_client_info_receiver2_t)

class svn_client_patch_func_t:
    """Proxy of C svn_client_patch_func_t struct"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, svn_client_patch_func_t, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, svn_client_patch_func_t, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
    __repr__ = _swig_repr
    def set_parent_pool(self, parent_pool=None):
      """Create a new proxy object for svn_client_patch_func_t"""
      import libsvn.core, weakref
      self.__dict__["_parent_pool"] = \
        parent_pool or libsvn.core.application_pool;
      if self.__dict__["_parent_pool"]:
        self.__dict__["_is_valid"] = weakref.ref(
          self.__dict__["_parent_pool"]._is_valid)

    def assert_valid(self):
      """Assert that this object is using valid pool memory"""
      if "_is_valid" in self.__dict__:
        assert self.__dict__["_is_valid"](), "Variable has already been deleted"

    def __getattr__(self, name):
      """Get an attribute from this object"""
      self.assert_valid()

      value = _swig_getattr(self, self.__class__, name)



      members = self.__dict__.get("_members")
      if members is not None:
        _copy_metadata_deep(value, members.get(name))
          

      _assert_valid_deep(value)

      return value

    def __setattr__(self, name, value):
      """Set an attribute on this object"""
      self.assert_valid()




      self.__dict__.setdefault("_members",{})[name] = value

      return _swig_setattr(self, self.__class__, name, value)

    def __call__(self, *args):
      return svn_client_invoke_patch_func(self, *args)

svn_client_patch_func_t_swigregister = _client.svn_client_patch_func_t_swigregister
svn_client_patch_func_t_swigregister(svn_client_patch_func_t)

SWIG_SVN_INFO_SIZE_UNKNOWN = _client.SWIG_SVN_INFO_SIZE_UNKNOWN
svn_swig_py_cancel_func = _client.svn_swig_py_cancel_func
svn_swig_py_get_commit_log_func = _client.svn_swig_py_get_commit_log_func
svn_swig_py_notify_func = _client.svn_swig_py_notify_func
# This file is compatible with both classic and new-style classes.