[sage-devel] Deprecate SAGE_FORTRAN, support FC (#13349) needs review

2012-08-19 Thread Jeroen Demeyer
Thanks to the GCC spkg, most uses of the SAGE_FORTRAN and SAGE_FORTRAN_LIB environment variables are not needed anymore. So I propose to continue supporting them for now, but *deprecate* their usage. Instead, we should support the standard variable FC as alternative to SAGE_FORTRAN. And I think (L

[sage-devel] Re: Parent with facade

2012-08-19 Thread vdelecroix
Hi Nicolas, Hi David, Thanks for your answers. > I'll check this out tomorrow, but I suspect I simply screwed up this > use case. Unless there is a patch in the Sage-Combinat queue touching > those lines, I guess you are just the first one hitting it! The tuple > should be converted to a category

[sage-devel] Re: [sage-combinat-devel] Parent with facade

2012-08-19 Thread Nicolas M. Thiery
On Sun, Aug 19, 2012 at 08:54:08PM +0200, Vincent Delecroix wrote: > There is a weirdness in the initialization of Parent with a facade. > Consider the following example > > class MySet(Parent): > def __init__(self): > Parent.__init__(self, category=(FiniteEnumeratedSets(), Monoids()))

Re: [sage-devel] Parent with facade

2012-08-19 Thread David Roe
I don't know if there's a ticket, but one way to fix it is to make the following two lines of parent.Parent.__init__ else: category = Category.join((category, Sets().Facades())) into if category is None: category = Sets().Facades()

[sage-devel] Parent with facade

2012-08-19 Thread Vincent Delecroix
Hello, There is a weirdness in the initialization of Parent with a facade. Consider the following example class MySet(Parent): def __init__(self): Parent.__init__(self, category=(FiniteEnumeratedSets(), Monoids())) The category of an instance of MySet is just a join of the two catego

[sage-devel] Re: SymmetricGroupRepresentation(s) do not appear in documentation

2012-08-19 Thread Dima Pasechnik
On 2012-08-19, Volker Braun wrote: > --=_Part_125_16406231.1345388179659 > Content-Type: text/plain; charset=ISO-8859-1 > > The developer manual does not automatically include docstrings from every > source file. The sage/combinat/symmetric_group_representations.py file is > not listed in do

[sage-devel] Re: SymmetricGroupRepresentation(s) do not appear in documentation

2012-08-19 Thread Volker Braun
The developer manual does not automatically include docstrings from every source file. The sage/combinat/symmetric_group_representations.py file is not listed in doc/en/reference/combinat/* so its documentation is not built. On Sunday, August 19, 2012 8:13:42 AM UTC-4, Dima Pasechnik wrote: >

[sage-devel] SymmetricGroupRepresentation(s) do not appear in documentation

2012-08-19 Thread Dima Pasechnik
the functions SymmetricGroupRepresentation(s) cannot be found in Sage documentation, i.e. http://www.sagemath.org/doc/reference/search.html?q=SymmetricGroupRepresentation does not return any hits. On the other hand, sage: SymmetricGroupRepresentation? returns documentation just fine. Is it a docum