Re: [PATCH 2/2] xmlrpc: Treat negative max_count as meaning "return last N results"

2016-03-31 Thread Finucane, Stephen
On 31 Mar 15:08, Damien Lespiau wrote: > On Fri, Feb 05, 2016 at 05:21:20PM +, Stephen Finucane wrote: > > @@ -602,6 +607,8 @@ def patch_list(filt=None): > > > > if max_count > 0: > > return list(map(patch_to_dict, patches[:max_count])) > > +elif max_count < 0:

Re: [PATCH 1/2] wsgi: Move wsgi file to expected location

2016-03-31 Thread Finucane, Stephen
On 31 Mar 15:50, Damien Lespiau wrote: > On Fri, Feb 05, 2016 at 05:35:37PM +, Stephen Finucane wrote: > > Django places a wsgi.py file in the root of each application's > > directory. Do this, adding a symlink to preserve existing > > operation for users. > > Even if the commit message

Re: [PATCH 1/2] wsgi: Move wsgi file to expected location

2016-03-31 Thread Damien Lespiau
On Fri, Feb 05, 2016 at 05:35:37PM +, Stephen Finucane wrote: > Django places a wsgi.py file in the root of each application's > directory. Do this, adding a symlink to preserve existing > operation for users. Even if the commit message mentions a symlink, there isn't one in the commit?

Re: [PATCH 2/2] xmlrpc: Treat negative max_count as meaning "return last N results"

2016-03-31 Thread Damien Lespiau
On Fri, Feb 05, 2016 at 05:21:20PM +, Stephen Finucane wrote: > @@ -602,6 +607,8 @@ def patch_list(filt=None): > > if max_count > 0: > return list(map(patch_to_dict, patches[:max_count])) > +elif max_count < 0: > +return list(map(patch_to_dict,