[sage-devel] Ultimatum: sage's trac and wiki

2016-02-11 Thread William Stein
Hi Sage Developers, Can somebody *PLEASE* volunteer to move trac.sagemath.org and wiki.sagemath.org to a VM on GCE and maintain it for a while? I've setup a complete Google compute engine project specifically for this and I'll pay for this indefinitely. The project has a machine on it with ssh k

Re: [sage-devel] Coverage and shared doctests...

2016-02-11 Thread Florent Hivert
On Thu, Feb 11, 2016 at 01:07:06PM -0500, David Roe wrote: > One option would be to use underscore methods to make the coverage script > happy. ??? Do you mean that underscore method don't need to be tested ? Florent -- You received this message because you are subscribed to the Google Groups

Re: [sage-devel] Coverage and shared doctests...

2016-02-11 Thread David Roe
On Thu, Feb 11, 2016 at 1:59 PM, Florent Hivert wrote: > On Thu, Feb 11, 2016 at 01:07:06PM -0500, David Roe wrote: > > One option would be to use underscore methods to make the coverage script > > happy. > > ??? Do you mean that underscore method don't need to be tested ? > Yes. I'm not sure e

Re: [sage-devel] Re: Coverage and shared doctests...

2016-02-11 Thread Florent Hivert
> You could write class ActiveTaskCounterDarwin(ActiveTaskCounterOther). Then > you don't need to replicate the list of other methods and you'd only need > to override the methods in ActiveTaskCounterDarwin that are actually > different [you could then name the other ActiveTaskCounter to emphasi

[sage-devel] Re: Coverage and shared doctests...

2016-02-11 Thread Nils Bruin
On Thursday, February 11, 2016 at 5:42:26 AM UTC-8, fhivert wrote: > > Hi, > > Background: during my work on #13580 "Parallel map reduce on > SearchForest", I > hit a bug in the implementation of semaphore on MacOS. So I need some code > which on MacOS reproduce the behavior of BoundedSema

Re: [sage-devel] Coverage and shared doctests...

2016-02-11 Thread David Roe
One option would be to use underscore methods to make the coverage script happy. I'm not sure if you'd be able to solve all of your problem like this though. You might also look into generalizing the 32-bit and 64-bit flags in sage/doctest/sources.py (search for "bit") to incorporate different do

[sage-devel] Coverage and shared doctests...

2016-02-11 Thread Florent Hivert
Hi, Background: during my work on #13580 "Parallel map reduce on SearchForest", I hit a bug in the implementation of semaphore on MacOS. So I need some code which on MacOS reproduce the behavior of BoundedSemaphore using a lock and an shared integer. Therefore I'm using the following code: