You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Роман Донченко <DX...@yandex.ru> on 2010/02/14 23:18:26 UTC

Re: Python & RA

Роман Донченко <DX...@yandex.ru> писал в своём письме Tue, 19 Jan 2010  
21:08:04 +0300:

> Daniel Eggert <eg...@macvaerk.dtu.dk> писал в своём письме Tue, 19 Jan  
> 2010 20:12:50 +0300:
>
>> On Jan 19, 2010, at 7:25 , Роман Донченко wrote:
>>
>>>> On Mon, 2010-01-18 at 20:12 -0600, Daniel Eggert wrote:
>>> The config argument isn't passed to the C API correctly ATM... you can  
>>> use a NULL config if that's enough for your needs:
>>>
>>> svn.ra.open2("http://svn.example.com/svn", c, None)
>>>
>>> Roman (who didn't get the original mail because of the Gmane mishap).
>>
>> Thanks. That works. Should I file a bug about that not working?
>
> Eh, probably not. I've entered it into my todo list and will probably  
> get around to it soon.

This has now been fixed in trunk. It took some uneasy changes to the  
infrastructure, though, so I won't backport this to 1.6.x. Note that the  
common cases of passing None or the result of core.svn_config_get_config  
do work in 1.6.

Roman.

Re: Python & RA

Posted by Daniel Eggert <eg...@macvaerk.dtu.dk>.
Den Feb 14, 2010 kl. 15:18 skrev Роман Донченко  
<DX...@yandex.ru>:

> Роман Донченко <DX...@yandex.ru> писал в  
> своём письме Tue, 19 Jan 2010 21:08:04 +0300:
>
>> Daniel Eggert <eg...@macvaerk.dtu.dk> писал в своём  
>> письме Tue, 19 Jan 2010 20:12:50 +0300:
>>
>>> On Jan 19, 2010, at 7:25 , Роман Донченко wrote:
>>>
>>>>> On Mon, 2010-01-18 at 20:12 -0600, Daniel Eggert wrote:
>>>> The config argument isn't passed to the C API correctly ATM...  
>>>> you can use a NULL config if that's enough for your needs:
>>>>
>>>> svn.ra.open2("http://svn.example.com/svn", c, None)
>>>>
>>>> Roman (who didn't get the original mail because of the Gmane  
>>>> mishap).
>>>
>>> Thanks. That works. Should I file a bug about that not working?
>>
>> Eh, probably not. I've entered it into my todo list and will  
>> probably get around to it soon.
>
> This has now been fixed in trunk. It took some uneasy changes to the  
> infrastructure, though, so I won't backport this to 1.6.x. Note that  
> the common cases of passing None or the result of  
> core.svn_config_get_config do work in 1.6.
>
> Roman.

Great. Thanks for the update.

/Daniel