Rev 1281: Use standard open_tmp_file implementation. in http://people.samba.org/bzr/jelmer/bzr-svn/0.4

Jelmer Vernooij jelmer at samba.org
Sun Jun 22 21:41:41 BST 2008


At http://people.samba.org/bzr/jelmer/bzr-svn/0.4

------------------------------------------------------------
revno: 1281
revision-id: jelmer at samba.org-20080622204140-9ikwdcnh059nsefq
parent: jelmer at samba.org-20080622203533-v5py10nydd42g0cj
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: 0.4
timestamp: Sun 2008-06-22 22:41:40 +0200
message:
  Use standard open_tmp_file implementation.
modified:
  ra.c                           ra.pyx-20080313140933-qybkqaxe3m4mcll7-1
=== modified file 'ra.c'
--- a/ra.c	2008-06-22 20:35:33 +0000
+++ b/ra.c	2008-06-22 20:41:40 +0000
@@ -515,16 +515,6 @@
 }
 #endif
 
-static svn_error_t *py_open_tmp_file(apr_file_t **fp, void *callback,
-									 apr_pool_t *pool)
-{
-	RemoteAccessObject *self = (RemoteAccessObject *)callback;
-
-	PyErr_SetString(PyExc_NotImplementedError, "open_tmp_file not wrapped yet");
-	
-	return py_svn_error(); /* FIXME */
-}
-
 static void py_progress_func(apr_off_t progress, apr_off_t total, void *baton, apr_pool_t *pool)
 {
 	RemoteAccessObject *ra = (RemoteAccessObject *)baton;
@@ -582,7 +572,6 @@
 	Py_INCREF(client_string_func);
 	callbacks2->progress_func = py_progress_func;
 	callbacks2->auth_baton = auth_baton;
-	callbacks2->open_tmp_file = py_open_tmp_file;
 	ret->progress_func = progress_cb;
 	callbacks2->progress_baton = (void *)ret;
 #if SVN_VER_MAJOR >= 1 && SVN_VER_MINOR >= 5




More information about the bazaar-commits mailing list