You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2011/08/10 17:03:16 UTC

svn commit: r1156211 - /subversion/trunk/subversion/bindings/ctypes-python/csvn/repos.py

Author: julianfoad
Date: Wed Aug 10 15:03:16 2011
New Revision: 1156211

URL: http://svn.apache.org/viewvc?rev=1156211&view=rev
Log:
* subversion/bindings/ctypes-python/csvn/repos.py
  (RemoteRepository): Add a doc string on this class, and mention that it
basically represents 'ra_session_t'.

Modified:
    subversion/trunk/subversion/bindings/ctypes-python/csvn/repos.py

Modified: subversion/trunk/subversion/bindings/ctypes-python/csvn/repos.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/ctypes-python/csvn/repos.py?rev=1156211&r1=1156210&r2=1156211&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/ctypes-python/csvn/repos.py (original)
+++ subversion/trunk/subversion/bindings/ctypes-python/csvn/repos.py Wed Aug 10 15:03:16 2011
@@ -67,6 +67,10 @@ class RepositoryURI(object):
         return self._as_parameter_
 
 class RemoteRepository(object):
+    """This class represents a connection from the client to a remote
+       Subversion repository."""
+    # The interface corresponds roughly to the svn_ra API, and an object of
+    # this type basically represents the C type 'svn_ra_session_t'.
 
     def __init__(self, url, user=None):
         """Open a new session to URL with the specified USER.