Hi,

I wonder why help on a method does not show the signature:
-------------------------------------------
sage: a=17 
sage: a.quo_rem?

Docstring: 

   Returns the quotient and the remainder of self divided by other.
   Note that the remainder returned is always either zero or of the
   same sign as other.

   INPUT:

   * "other" - the divisor

   OUTPUT:

   * "q" - the quotient of self/other

   * "r" - the remainder of self/other

   EXAMPLES:

      sage: z = Integer(231)
      sage: z.quo_rem(2)
      (115, 1)

...

-------------------------------------------

while this does?

-------------------------------------------

sage: divisors?

Signature:      divisors(n)Docstring:     
   Returns a list of all positive integer divisors of the nonzero
   integer n.

   INPUT:

   * "n" - the element

   EXAMPLES:

      sage: divisors(-3)
      [1, 3]
      sage: divisors(6)
      [1, 2, 3, 6]

...

-------------------------------------------


Isn't this a bug?

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to